STRIP_SUFFIX
Remove the given suffix from the end of the string.
Syntax
STRIP_SUFFIX(input, suffix)
Arguments
Name
Type
Description
Default Value
input
string
suffix
string
Returns
Returns a string
value.
Examples
input
suffix
Output
'((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
input
suffix
Output
'((foo))'
')'
((foo)
Last updated