Useful static methods on the Char class

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

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. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

Leave a Comment

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