Summary
Contains some pre-defined regular expressions for matching strings.
Static fields
Stringerex | | Parses a single character that belongs to Unicode category Pc. This includes the underscore. |
Stringerex | | Matches a single digit (any Unicode character designated as a “digit”; not just the ASCII digits). |
Stringerex | | Matches a single ASCII digit. |
Stringerex | |
Parses an identifier according to the rules of most programming languages (allowing the underscore but no
dollar sign). |
Stringerex | | Parses an identifier without allowing the underscore. |
Stringerex<long> | | Parses an integer that may have a leading minus sign. |
Stringerex | | Parses a JavaScript identifier, which allows the dollar ($) character. |
Stringerex | | Parses a single letter character (Unicode category L). |
Stringerex | | Parses a single character that is a letter or digit (Unicode category L or Nd). |
Stringerex<double> | | Parses a decimal number, allowing fractional parts and exponential notation. |
Stringerex | | Matches any amount of whitespace (including none). |
Stringerex<long> | | Parses a positive integer. |
Stringerex | | Matches any amount of whitespace, but at least one character. |