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 Constructor

Initializes a regular expression object.

Overload List

Creates and compiles a regular expression object for the specified regular expression.

[Visual Basic] Overloads Public Sub New(String)
[C#] public Regex(String);
[C++] public: Regex(String*);
[JScript] public function Regex(String);

Creates and compiles a regular expression object for the specified regular expression with options that modify the pattern.

[Visual Basic] Overloads Public Sub New(String, String)
[C#] public Regex(String, String);
[C++] public: Regex(String*, String*);
[JScript] public function Regex(String, String);

See Also

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