Char: Get Unicode Category

image_pdfimage_print
   
  
using System;
using System.Text.RegularExpressions;

public class Example
{
   public static void Main()
   {
      char[] chars = { 'a', 'X', '8', ',', ' ', 'u0009', '!' };

      foreach (char ch in chars)
         Console.WriteLine("'{0}': {1}", Regex.Escape(ch.ToString()), Char.GetUnicodeCategory(ch));
   }
}

   
    
     


This entry was posted in Data Types. Bookmark the permalink.