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) |