CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2011
    Posts
    2

    Question Culture character sets

    Is there anyway in .net to get the character sets of a given culture ?

    for example:
    for given culture He-IL (hebrew) it will return some how the range 0x0590-0x05FF
    for Greek 0x0370-0x03FF...

    like in this list : http://www.ssec.wisc.edu/~tomw/java/unicode.html

    thanks

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: Culture character sets

    Not sure what you're after, but have you looked at the CultureInfo class :

    http://msdn.microsoft.com/en-us/libr...(v=vs.71).aspx

    ?

  3. #3
    Join Date
    Aug 2011
    Posts
    2

    Question Re: Culture character sets

    yep. I've checked this class allot.

    But couldn't find it there.

    what i'm looking for is the first character ASCII value and the last for this culture.

    Every language letters ASCII are fixed. and there is a range for each language.
    I don't want to create a list with all of those ranges (see the link i sent before),
    wanted to know if there is a way to get it ?

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured