/
regexp_extract_array
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) |
, multiple selections available,
Related content
regexp_count_array
regexp_count_array
More like this
toIntArray
toIntArray
More like this