up vote 23 down vote favorite
6
share [g+] share [fb]

What's the difference between Char.IsDigit() and Char.IsNumber() in C#?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 32 down vote accepted

Char.IsDigit() is a subset of Char.IsNumeric().

Some of the characters that are 'numeric' but not digits include 0x00b2 and 0x00b3 which are superscripted 2 and 3 ('²' and '³') and the glyphs that are fractions such as '¼', '½', and '¾'.

Note that there are quite a few characters that IsDigit() returns true for that are not in the ASCII range of 0x30 to 0x39, such as the Thai digit characters that return true from Char.IsDigit(): '๐' '๑' '๒' '๓' '๔' '๕' '๖' '๗' '๘' '๙'

This snippet of code tells you which code points differ:

static private void test()
{
    for (int i = 0; i <= 0xffff; ++i)
    {
        char c = (char) i;

        if (Char.IsDigit( c) != Char.IsNumber( c)) {
            Console.WriteLine( "Char value {0:x} IsDigit() = {1}, IsNumber() = {2}", i, Char.IsDigit( c), Char.IsNumber( c));
        }
    }
}
link|improve this answer
so bottom line, how do I determine if a char exists is one of 0123456789? – Shimmy Oct 26 '11 at 20:26
if it's >= the character "0" and <= the character "9" – Bradley Uffner Oct 26 '11 at 20:49
feedback

I found the answer:

Char.IsNumber() determines if a Char is of any numeric Unicode category. This contrasts with IsDigit, which determines if a Char is a radix-10 digit.

Valid numbers are members of the following categories in UnicodeCategory:

  1. DecimalDigitNumber
    Decimal digit character, that is, a character in the range 0 through 9. Signified by the Unicode designation "Nd" (number, decimal digit). The value is 8.
  2. LetterNumber
    Number represented by a letter, instead of a decimal digit, for example, the Roman numeral for five, which is "V". The indicator is signified by the Unicode designation "Nl" (number, letter). The value is 9.
  3. OtherNumber
    Number that is neither a decimal digit nor a letter number, for example, the fraction 1/2. The indicator is signified by the Unicode designation "No" (number, other). The value is 10.

Conclusion

  • Char.IsDigit:
    Valid digits are members of the DecimalDigitNumber category only.
  • Char.IsNumber:
    Valid numbers are members of the DecimalDigitNumber, LetterNumber, or OtherNumber category.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.