RegexMatch
This Flow Script tutorial explains how to use the RegexMatch function with syntax and examples.
Description
Syntax
Parameters
Returns
Example
RegexMatch("abc", "\w{3}")
Result: TRUE
RegexMatch("123 45", "\w{3}")
Result: TRUE
RegexMatch("abc", "\d{3}")
Result: FALSE
RegexMatch("123 45", "\d{3}")
Result: TRUE
RegexMatch("123 45", "\d{4}")
Result: FALSE
RegexMatch("123 45", "\s{1}")
Result: TRUE
RegexMatch("123 45", "\s{2}")
Result: FALSELast updated
Was this helpful?