Regex.Replace Method
.NET Framework 3.0
Within a specified input string, replaces strings that match a regular expression pattern with a specified replacement string.
| Name | Description |
|---|---|
| Regex.Replace (String, MatchEvaluator) | Within a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String) | Within a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string. Supported by the .NET Compact Framework. |
| Regex.Replace (String, MatchEvaluator, Int32) | Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, Int32) | Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, MatchEvaluator) | Within a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, String) | Within a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Supported by the .NET Compact Framework. |
| Regex.Replace (String, MatchEvaluator, Int32, Int32) | Within a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, Int32, Int32) | Within a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, MatchEvaluator, RegexOptions) | Within a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate. Specified options modify the matching operation. Supported by the .NET Compact Framework. |
| Regex.Replace (String, String, String, RegexOptions) | Within a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Specified options modify the matching operation. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: