Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Extract all matches for a given regex pattern from a string.

Usage details

Input
table

col

random 123 text 456 test

LQL Command

select *, regexp_extract_array(col, '[a-z]+') as matches  from table

Output

col

matches

random 123 text 456 test

WrappedArray(random, text, test)

  • No labels