Description
Returns a list of matches to the regular expression
Available In
- Apps
- Automations
- Analysis
Syntax
REGEX_MATCH(text, regex, modifiers?): List<text>
Example
REGEX_MATCH("BaNaaNA", "ana", "gi") = ["aNa","aNA"]
regex_match("aa^bb", "\\^bb") = ["^bb"]
