REGEXP_EXTRACT_ALL (Lakehouse v2)
Extracts all substrings that match a regular expression pattern.
Analyze Syntax
Section titled “Analyze Syntax”func.regexp_extract_all(<str>, <pattern>)Analyze Examples
Section titled “Analyze Examples”func.regexp_extract_all('a1b2c3', '\\d+')
┌───────────────┐│ ['1','2','3'] │└───────────────┘SQL Syntax
Section titled “SQL Syntax”REGEXP_EXTRACT_ALL(<str>, <pattern>)SQL Examples
Section titled “SQL Examples”SELECT REGEXP_EXTRACT_ALL('a1b2c3', '\\d+');
┌───────────────┐│ ["1","2","3"] │└───────────────┘