/
regexp_count_array
regexp_count_array
[ 1 Usage Details ]
Usage Details
Input
table
col |
---|
random 123 text 456 test |
LQL Command
select *, regexp_count_array(col, Array('\\d+', '[a-z]+')) as countarray from table
Output
col | countarray |
---|---|
random 123 text 456 test | WrappedArray(2, 3) |
, multiple selections available,
Related content
regexp_extract_array
regexp_extract_array
More like this
matches
matches
More like this