Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.Util.Regex2

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
Match(string input, string pattern, Regex2Options options)
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>
Matches(string input, string pattern, Regex2Options options)
An easier-to-use version of Regex.Matches(string, string, RegexOptions).