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

[Visual Basic]
Public Shared Function Escape( _
   ByVal str As String _
) As String
[C#]
public static string Escape(
   string str
);
[C++]
public: static String* Escape(
   String* str
);
[JScript]
public static function Escape(
   str : String
) : String;

Parameters

str
The input string.

Return Value

A string of characters with any metacharacters converted to their escaped form.

See Also

Regex Class | Regex Members | System.Text.RegularExpressions Namespace