/
regexp_count
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 |
, multiple selections available,
Related content
regexp_count_array
regexp_count_array
More like this
extractParseAnchor
extractParseAnchor
More like this
matches
matches
More like this