REGEXP_EXTRACT_ALL

Matches the regular expression on the input string. Returns the escape groups if any exists or the original string if none exists.

Syntax

REGEXP_EXTRACT_ALL(first, second)

Arguments

Returns

Returns the substrings(s) matched by the regular expression.


Examples

Transformation job example

SQL

CREATE JOB function_operator_example
    ADD_MISSING_COLUMNS = true
AS INSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data 
  MAP_COLUMNS_BY_NAME
    SELECT first, second,
        REGEXP_EXTRACT_ALL(first, second) AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET first = 'abcdefabc',
        second = 'abc'
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

Last updated