RegexMatches
This Flow Script tutorial explains how to use the RegexMatches function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the RegexMatches function with syntax and examples.
The RegexMatches function searches an input string for all occurrences of a regular expression and returns all the matches.
The syntax for the RegexMatch function is:
RegexMatches(input, pattern)
input - the string to check.
pattern - the pattern to match.
The RegexMatches function returns the objects found by the search. If no matches are found, the method returns an empty collection object.
Last updated
Was this helpful?
Was this helpful?