Click or drag to resize
Cimbalino ToolkitStringExtensionsRegexReplace Method (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.

Namespace: Cimbalino.Toolkit.Extensions
Assembly: Cimbalino.Toolkit.Core (in Cimbalino.Toolkit.Core.dll) Version: 2.2.1.0 (2.2.1.0)
Syntax
C#
public static string RegexReplace(
	this string input,
	string pattern,
	MatchEvaluator evaluator,
	RegexOptions options
)

Parameters

input
Type: SystemString
The string to search for a match.
pattern
Type: SystemString
The regular expression pattern to match.
evaluator
Type: System.Text.RegularExpressionsMatchEvaluator
A custom method that examines each match and returns either the original matched string or a replacement string.
options
Type: System.Text.RegularExpressionsRegexOptions
A bitwise combination of the enumeration values.

Return Value

Type: String
A new string that is identical to the input string, except that a replacement string takes the place of each matched string.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Version Information

Portable

Supported in: 4.5

Windows

Supported in: 10.0, 8.1

Windows Phone

Supported in: 8.1

Windows Phone Silverlight

Supported in: 8.1, 8.0
See Also