STRIP_SUFFIX

Remove the given suffix from the end of the string.

Syntax

STRIP_SUFFIX(input, suffix)

Arguments

NameTypeDescriptionDefault Value

input

string

suffix

string

Returns

string

Examples

inputsuffixOutput

'((foo))'

')'

((foo)

'foo'

')'

foo

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 input, suffix,
        STRIP_SUFFIX(input, ')') AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET input = '((foo))', 
        suffix = ')'
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

inputsuffixOutput

'((foo))'

')'

((foo)

Last updated