regexpExtract
This section contains reference documentation for the regexpExtract function.
Signature
Usage Examples
select regexpExtract('foo', '.*') AS value
from ignoreMevalue
select regexpExtract('foo123', '[0-9]+') AS value
from ignoreMevalue
select regexpExtract('foo123', '[^0-9]+') AS value
from ignoreMevalue
select regexpExtract('foo bar baz', '(\w+) (\w+)', 0) AS value
from ignoreMevalue
value
value
Was this helpful?

