Matches
Check whether a string matches a regular expression.
This function returns a Boolean.
Arguments
Input Value | Specify the value to check. |
Properties
Regex Value |
Specify the regular expression to use.
This property is also available as an argument. If you specify both, the argument value is used and the property value is ignored. |
Case sensitive | Select this check box if you want to match text with a specific case. |
Ignore white space | Select this check box if you want to ignore white space
characters in the regular expression. This can be useful if you are
creating a long regular expression and want to split it over several
lines to make it more readable. For example, with
the Ignore white space
option enabled, the regular expression Main Street would not match the following
value:
|
Single Line | Select this check box if you want the input value to be processed
as a single line, even if it contains line breaks. This also means
that the . character matches any
character, including line breaks. For example,
with the Single Line
option enabled, the regular expression Street$\n^Traverse would not match the following
value:
|