RegexMatch
This Flow Script tutorial explains how to use the RegexMatch function with syntax and examples.
Description
The RegexMatch function returns a truth (Boolean) value indicating whether the given Regular Expression pattern matches the input.
Syntax
The syntax for the RegexMatch function is:
RegexMatch(input, pattern)
Parameters
input - the string to check.
pattern - the pattern to match.
Returns
The RegexMatch function returns True or False.
Example
Let's look at some RegexMatch function examples and explore how to use the RegexMatch function.
Last updated