regexp_count
[ 1 Usage Details ]
Usage Details
Input
table
col |
---|
random 123 text 456 test |
LQL Command
select *, regexp_count(col, '\\d+') as ct from table
Output
col | ct |
---|---|
random 123 text 456 test | 2 |
Input
table
col |
---|
random 123 text 456 test |
LQL Command
select *, regexp_count(col, '\\d+') as ct from table
Output
col | ct |
---|---|
random 123 text 456 test | 2 |