Regex Constructor (String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes and compiles a new instance of the Regex class for the specified regular expression.
Assembly: System (in System.dll)
Parameters
- pattern
- Type: System.String
The regular expression pattern to match.
| Exception | Condition |
|---|---|
| ArgumentException | A regular expression parsing error occurred. |
| ArgumentNullException | pattern is Nothing. |
The pattern parameter consists of various regular expression language elements that symbolically describe the string to match. For more information about regular expressions, see the Regular Expressions as a Language and Regular Expression Language Elements topics in the .NET Framework documentation.
A Regex object is immutable, which means that it can be used only for the match parameters defined when it is created. It can be used any number of times without being recompiled, however.
This constructor instantiates a regular expression object that performs a case-sensitive match of any alphabetic characters defined in pattern. For a case-insensitive match, use the Regex.Regex(String, RegexOptions) constructor.
The following example illustrates how to use this constructor to instantiate a regular expression that matches any word that begins with the letters "a" or "t".
Dim pattern As String = "\b[at]\w+" Dim text As String = "The threaded application ate up the thread pool as it executed." Dim matches As MatchCollection Dim defaultRegex As New Regex(pattern) ' Get matches of pattern in text matches = defaultRegex.Matches(text) outputBlock.Text &= String.Format("Parsing '{0}'", text) & vbCrLf ' Iterate matches For ctr As Integer = 0 To matches.Count - 1 outputBlock.Text &= String.Format("{0}. {1}", ctr, matches(ctr).Value) & vbCrLf Next ' This example displays the following output: ' Parsing 'The threaded application ate up the thread pool as it executed.' ' 0. threaded ' 1. application ' 2. ate ' 3. the ' 4. thread ' 5. as
Note that, because comparisons are case-sensitive by default, the regular expression pattern fails to match the word "The" at the beginning of the text.