REGEXP (Lakehouse v2)
Checks whether a string matches a regular expression pattern.
Analyze Syntax
Section titled “Analyze Syntax”func.regexp(<str> REGEXP <pattern>)Analyze Examples
Section titled “Analyze Examples”get_column(table, 'email').regexp_match('^[a-z]+@')
┌───────────┐│ (boolean) │└───────────┘SQL Syntax
Section titled “SQL Syntax”REGEXP(<str> REGEXP <pattern>)SQL Examples
Section titled “SQL Examples”SELECT email FROM users WHERE email REGEXP '^[a-z]+@[a-z]+\\.com$';
┌───────────────────┐│ alice@example.com │└───────────────────┘