Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Represents the method that is called each time a regular expression match is found during a Replace method operation.
Namespace: System.Text.RegularExpressions
Assembly: System.Text.RegularExpressions (in System.Text.RegularExpressions.dll)
Syntax
'Declaration
Public Delegate Function MatchEvaluator ( _
match As Match _
) As String
public delegate string MatchEvaluator(
Match match
)
public delegate String^ MatchEvaluator(
Match^ match
)
type MatchEvaluator =
delegate of
match:Match -> string
JScript does not support delegates.
Parameters
- match
Type: System.Text.RegularExpressions. . :: . .Match
The Match object that represents a single regular expression match during a Replace method operation.
Return Value
Type: System. . :: . .String
Remarks
You can use a MatchEvaluator delegate method to perform a custom verification or manipulation operation for each match found by a replacement method such as Regex.Replace(String, MatchEvaluator). For each matched string, the Replace method calls the MatchEvaluator delegate method with a Match object that represents the match. The delegate method performs whatever processing you prefer and returns a string that the Replace method substitutes for the matched string.