Regex.Replace Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

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

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Replace(String, String) Within a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Replace(String, String, String) Within a specified input string, replaces all strings that match a specified regular expression with a specified replacement string.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 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.

Top