mscorlib(4.0.0.0) API with additions
|
Classes | |
class | Capture |
Represents the results from a single successful subexpression capture. More... | |
class | CaptureCollection |
Represents the set of captures made by a single capturing group. More... | |
class | Group |
Represents the results from a single capturing group. More... | |
class | GroupCollection |
Returns the set of captured groups in a single match. More... | |
class | Match |
Represents the results from a single regular expression match. More... | |
class | MatchCollection |
Represents the set of successful matches found by iteratively applying a regular expression pattern to the input string. More... | |
class | Regex |
Represents an immutable regular expression.To browse the .NET Framework source code for this type, see the Reference Source. More... | |
class | RegexCompilationInfo |
Provides information about a regular expression that is used to compile a regular expression to a stand-alone assembly. More... | |
class | RegexMatchTimeoutException |
The exception that is thrown when the execution time of a regular expression pattern-matching method exceeds its time-out interval. More... | |
class | RegexRunner |
The T:System.Text.RegularExpressions.RegexRunner class is the base class for compiled regular expressions. More... | |
class | RegexRunnerFactory |
Creates a T:System.Text.RegularExpressions.RegexRunner class for a compiled regular expression. More... | |
Enumerations | |
enum | RegexOptions { RegexOptions.None = 0x0, RegexOptions.IgnoreCase = 0x1, RegexOptions.Multiline = 0x2, RegexOptions.ExplicitCapture = 0x4, RegexOptions.Compiled = 0x8, RegexOptions.Singleline = 0x10, RegexOptions.IgnorePatternWhitespace = 0x20, RegexOptions.RightToLeft = 0x40, RegexOptions.ECMAScript = 0x100, RegexOptions.CultureInvariant = 0x200 } |
Provides enumerated values to use to set regular expression options. More... | |
Functions | |
internal delegate RegexRunner | CreateInstanceDelegate () |
internal delegate bool | FindFirstCharDelegate (RegexRunner r) |
delegate string | MatchEvaluator (Match match) |
Represents the method that is called each time a regular expression match is found during a Overload:System.Text.RegularExpressions.Regex.Replace method operation. More... | |
internal delegate void | NoParamDelegate (RegexRunner r) |
|
strong |
Provides enumerated values to use to set regular expression options.
Definition at line 6 of file RegexOptions.cs.
delegate string System.Text.RegularExpressions.MatchEvaluator | ( | Match | match | ) |
Represents the method that is called each time a regular expression match is found during a Overload:System.Text.RegularExpressions.Regex.Replace method operation.
match | The T:System.Text.RegularExpressions.Match object that represents a single regular expression match during a Overload:System.Text.RegularExpressions.Regex.Replace method operation. |