Static
Readonly
digitsMatches one or more digit characters.
Static
Readonly
firstMatches lowercase at the start of a string for pascal case conversion.
Static
Readonly
firstMatches uppercase at the start of a string for camel case conversion.
Static
Readonly
lettersMatches one or more letter characters (A-Z, a-z).
Static
Readonly
lineMatches all line breaks (\r?\n).
Static
Readonly
lowerMatches lowercase followed by uppercase.
Static
Readonly
nonMatches non-alphanumeric characters (inverse of [A-Za-z0-9]).
Static
Readonly
pascalMatches PascalCase/CamelCase word boundaries (split for e.g. HelloWorld
to Hello World
).
Static
Readonly
separatorMatches dash, underscore, or space plus next char.
Static
Readonly
spacesMatches one or more spaces for splitting.
Static
Readonly
whitespaceMatches one or more whitespace characters.
Static
Readonly
wordMatches the start of a word for capitalization.
A static utility class containing commonly used regular expressions