REGEXP_SPLIT_TO_ARRAY
Overview
Splits a string by a regular expression and returns an ARRAY<STRING>. This function is identical to SPLIT_BY_REGEXP.
Syntax
Parameters
<str>: STRING type. The string to split.<pattern>: STRING type. The regular expression pattern.
Examples
Related Documentation
- SPLIT_BY_REGEXP — alias with identical behavior
- SPLIT_BY_STRING — splits by a literal string (no regex interpretation)
- SPLIT
