regexp_extract_array
[ 1 Usage Details ]
Usage Details
Input
table
col |
---|
random 123 text 456 test |
LQL Command
select *, regexp_extract_array(col, '[a-z]+') as matches from table
Output
col | matches |
---|---|
random 123 text 456 test | WrappedArray(random, text, test) |