Abinitio Functions
A>I In-built Functions re_get_match : Returns the first and longest string in a target string that matches a regular expression. Syntax : re_get_match(string str, string pattern [, integer offset]) e.g., re_get_match("man on the moon", "oo") --> "oo" e.g., re_get_match("1234 Milldale Ave.", "[a-zA-Z]+") --> "Milldale" e.g., re_get_match("1234 Milldale Ave.", "[0-9]+") --> "1234" re_get_matches : Returns, from a target string, a vector of substrings that match the first instance of a regular expression containing upto a nine capturing. Syntax : string(int)[int] re_get_matches(string str, string pattern [, integer offset]) ...