regexp_countCount the number of matches of a regex pattern in a given string.Suggest EditsUsage Details Input table colrandom 123 text 456 test LQL Commandselect *, regexp_count(col, '\\d+') as ct from table Output colctrandom 123 text 456 test2Updated over 2 years ago Table of Contents Usage Details