Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.Generexes.Stringerexes

Summary

Contains some pre-defined regular expressions for matching strings.

Static fields

StringerexParses a single character that belongs to Unicode category Pc. This includes the underscore.
StringerexMatches a single digit (any Unicode character designated as a “digit”; not just the ASCII digits).
StringerexMatches a single ASCII digit.
Stringerex Parses an identifier according to the rules of most programming languages (allowing the underscore but no dollar sign).
StringerexParses an identifier without allowing the underscore.
Stringerex<long>Parses an integer that may have a leading minus sign.
StringerexParses a JavaScript identifier, which allows the dollar ($) character.
StringerexParses a single letter character (Unicode category L).
StringerexParses 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.
StringerexMatches any amount of whitespace (including none).
Stringerex<long>Parses a positive integer.
StringerexMatches any amount of whitespace, but at least one character.