New in Formulas 2.0
The match()
function returns all matches of the regular expression as a list.
match(string, string)
string.match(string)
Code language: JavaScript (javascript)
Example Formulas
match("Thomas 123 Frank 321", "\d+") /* Output: ["123", "321"] */
Code language: JavaScript (javascript)