regexp_extract_arrayExtract all matches for a given regex pattern from a string. Suggest EditsUsage Details Input table colrandom 123 text 456 test LQL Commandselect *, regexp_extract_array(col, '[a-z]+') as matches from table Output colmatchesrandom 123 text 456 testWrappedArray(random, text, test)Updated about 1 year ago Table of Contents Usage Details