Difference between Char.IsDigit() and Char.IsNumber() in C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T12:19:03Zhttp://stackoverflow.com/feeds/question/228532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228532/difference-between-char-isdigit-and-char-isnumber-in-c13Difference between Char.IsDigit() and Char.IsNumber() in C#Guy2008-10-23T04:23:13Z2009-03-15T17:43:37Z
<p>What's the difference between Char.IsDigit() and Char.IsNumber() in C#?</p>
http://stackoverflow.com/questions/228532/difference-between-char-isdigit-and-char-isnumber-in-c/228538#2285386Answer by Guy for Difference between Char.IsDigit() and Char.IsNumber() in C#Guy2008-10-23T04:25:15Z2009-03-15T17:34:52Z<p>I found the answer:</p>
<blockquote>
<p>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.</p>
<p>Valid numbers are members of the
following categories in
UnicodeCategory: DecimalDigitNumber,
LetterNumber, or OtherNumber.</p>
</blockquote>
http://stackoverflow.com/questions/228532/difference-between-char-isdigit-and-char-isnumber-in-c/228565#22856516Answer by Michael Burr for Difference between Char.IsDigit() and Char.IsNumber() in C#Michael Burr2008-10-23T04:39:27Z2008-10-23T15:03:06Z<p><code>Char.IsDigit()</code> is a subset of <code>Char.IsNumeric()</code>.</p>
<p>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 '¾'.</p>
<p>Note that there are quite a few characters that <code>IsDigit()</code> returns <code>true</code> for that are not in the ASCII range of 0x30 to 0x39, such as the Thai digit characters that return true from Char.IsDigit(): '๐' '๑' '๒' '๓' '๔' '๕' '๖' '๗' '๘' '๙'</p>
<p>This snippet of code tells you which code points differ:</p>
<pre><code>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));
}
}
}
</code></pre>