Description
Returns the number of regular expression matches between the calling String and the specified String argument. In order to return a match, the String argument must match the entire string - this can be accomplished using regular expressions. A successful pattern match always returns >= 1, where multiple matches come from user specified groupings.
|
|
.
|
Returns any character except \n (line feed), \r (carriage return)
|
|
|
{n}
|
|
{n,}
|
|
|
|
|
|
[...]
|
|
|
|
|
|
|
|
\Q...\E
|
Matches the characters between \Q and \E literally, suppressing the meaning of special characters
|
\d
|
Matches any decimal digits, can be used inside [...]
|
\w
|
Matches any word character, can be used inside [...]
|
\s
|
Matches any whitespace, can be used inside [...]
|
\D
|
Matches a character that is not a digit, can be used inside [...]
|
\W
|
Matches a character that is not a word character, can be used inside [...]
|
\S
|
Matches a character that is not a whitespace, can be used inside [...]
|
\n
|
Matches a line feed
|
\t
|
Matches a tab
|
*
|
0 or more of previous expression
|
+
|
1 or more of previous expression
|
?
|
0 or 1 of previous expression
|
Timing Precision Mode
This page describes functionality in millisecond timing precision mode. Millisecond timing precision mode is deprecated and will be removed in a future release. We recommend that you migrate your Mission Plans to nanosecond timing precision mode.
Click here to see the documentation for this object in nanosecond timing precision mode.
Overload List
Signatures
|
Return Value
|
Description
|
String.Match(String regularExpression)
|
Variable
|
Returns the number of regular expression matches between the calling String and the specified String argument. In order to return a match, the String argument must match the entire string - this can be accomplished using regular expressions. A successful pattern match always returns >= 1, where multiple matches come from user specified groupings.
|
String.Match(String regularExpression, StringArray stringArrayArgument)
|
Variable
|
Returns the number of regular expression matches between the calling String and the specified String argument. In order to return a match, the String argument must match the entire string - this can be accomplished using regular expressions. A successful pattern match always returns >= 1, where multiple matches come from user specified groupings.
|
See also
String Object
String.Find
Parsing Dates and Times
Parsing Arbitrary String Data
Parsing Arbitrary String Data
|