Summary
Exposes a number of convenience methods to compensate for a couple of shortcomings of the built-in Regex class:
namely, returning a non-generic collection of matches, and defaulting to "." not matching newlines.
Static methods
Match | Match(string input, string pattern) | An easier-to-use version of Regex.Match(string, string). |
Match | | An easier-to-use version of Regex.Match(string, string, RegexOptions). |
IEnumerable<Match> | Matches(string input, string pattern) | An easier-to-use version of Regex.Matches(string, string). |
IEnumerable<Match> | | An easier-to-use version of Regex.Matches(string, string, RegexOptions). |