Useful static methods on the Char class

Yan Cui

I help clients go faster for less using serverless technologies.

Whilst reading through the answers for this question on StackOverflow, I came across the IsDigit and IsNumber methods on the Char class. And looking at the Char class in more detail there are many more useful methods on the Char class which I didn’t realise was there before, such as:

IsDigit checks if a character is a radix-10 digit, i.e. 0-9.

IsNumber checks if a character can be categorized as a number, including digits, characters, fractions, subscripts, currency numerators, etc.

GetNumericValue converts a character to a double.

GetUnicodeCategory categorizes a character into a group identified by one of the UnicodeCategory enum. This is an interesting method as it allows you to check whether a given character is a currency symbol or maths symbol for instance:

char.GetUnicodeCategory('+').Dump();  // UnicodeCategory.MathSymbol
char.GetUnicodeCategory('-').Dump();  // UnicodeCategory.DashPunctuation
char.GetUnicodeCategory('{').Dump();  // UnicodeCategory.OpenPunctuation
char.GetUnicodeCategory('$').Dump();  // UnicodeCategory.CurrencySymbol
char.GetUnicodeCategory('}').Dump();  // UnicodeCategory.ClosePunctuation

IsControl checks whether a character is a control character.

IsLetter checks whether a character is a unicode letter.

IsLetterOrDigit checks whether a character is a letter or a decimal digit.

IsLower and IsUpper checks whether a character is lower or upper case letter.

IsWhiteSpace checks if a character is a white space.

What’s even better, each of the methods are overloaded so that you can pass in the char to test or a string and an accompanying int to specify the position of the char in the string, e.g. IsDigit(char) and IsDigit(string, int).


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

Your email address will not be published. Required fields are marked *