Regex.Replace Method (String, MatchEvaluator, Int32)
Assembly: System (in system.dll)
public String Replace ( String input, MatchEvaluator evaluator, int count )
public function Replace ( input : String, evaluator : MatchEvaluator, count : int ) : String
Not applicable.
Parameters
- input
The string to search for a match.
- evaluator
A custom method that examines each match and returns either the original matched string or a replacement string.
- count
The maximum number of times the replacement will occur.
Return Value
A new string that is identical to the input string, except that a replacement string takes the place of each matched string.The regular expression is the pattern defined by the constructor for the current Regex object. The evaluator parameter is the delegate for a custom method that you define and that examines each match. Your custom method returns a string that replaces the matched input.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.