Regex::Replace Method

 

In a specified input string, replaces strings that match a regular expression pattern with a specified replacement string.

Namespace:   System.Text.RegularExpressions
Assembly:  System (in System.dll)

NameDescription
System_CAPS_pubmethodReplace(String^, MatchEvaluator^)

In a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate.

System_CAPS_pubmethodReplace(String^, MatchEvaluator^, Int32)

In 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.

System_CAPS_pubmethodReplace(String^, MatchEvaluator^, Int32, Int32)

In 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.

System_CAPS_pubmethodReplace(String^, String^)

In a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string.

System_CAPS_pubmethodReplace(String^, String^, Int32)

In a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.

System_CAPS_pubmethodReplace(String^, String^, Int32, Int32)

In a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, MatchEvaluator^)

In a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, MatchEvaluator^, RegexOptions)

In 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.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, MatchEvaluator^, RegexOptions, TimeSpan)

In a specified input string, replaces all substrings that match a specified regular expression with a string returned by a MatchEvaluator delegate. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, String^)

In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, String^, RegexOptions)

In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Specified options modify the matching operation.

System_CAPS_pubmethodSystem_CAPS_staticReplace(String^, String^, String^, RegexOptions, TimeSpan)

In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.

Return to top
Show: