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)

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

Parameters

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

Return Value

The modified character string.

See Also

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