Regex.Replace Method (String, String, Int32)
.NET Framework 3.0
Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.
Namespace: System.Text.RegularExpressions
Assembly: System (in system.dll)
Regex Members
System.Text.RegularExpressions Namespace
Assembly: System (in system.dll)
public String Replace ( String input, String replacement, int count )
public function Replace ( input : String, replacement : String, count : int ) : String
Not applicable.
Parameters
- input
The string to search for a match.
- replacement
The replacement string.
- count
The maximum number of times the replacement can 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 search for matches starts at the beginning of the input parameter string. The regular expression is the pattern defined by the constructor for the current Regex object. If count is negative, replacements continue to the end of the string.
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.Reference
Regex ClassRegex Members
System.Text.RegularExpressions Namespace
Other Resources
SubstitutionsCommunity Additions
ADD
Show: