NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Regex.Replace (String, String, String, String)

[Visual Basic]
Overloads Public Shared Function Replace( _
   ByVal input As String, _
   ByVal pattern As String, _
   ByVal replacement As String, _
   ByVal options As String _
) As String
[C#]
public static string Replace(
   string input,
   string pattern,
   string replacement,
   string options
);
[C++]
public: static String* Replace(
   String* input,
   String* pattern,
   String* replacement,
   String* options
);
[JScript]
public static function Replace(
   input : String,
   pattern : String,
   replacement : String,
   options : String
) : String;

Parameters

input
The string to be modified.
pattern
[To be supplied.]
replacement
[To be supplied.]
options
[To be supplied.]

Return Value

The modified character string.

See Also

Regex Class | Regex Members | System.Text.RegularExpressions Namespace | Regex.Replace Overload List