Document toolboxDocument toolbox

regexp_count

Usage Details

Input
table

col

col

random 123 text 456 test

LQL Command

select *, regexp_count(col, '\\d+') as ct from table

Output

col

ct

col

ct

random 123 text 456 test

2