TRIM_CHARS
Returns the given string without leading or trailing characters.
Syntax
Arguments
Name | Type | Description | Default Value |
---|---|---|---|
characters | string | ||
input | string |
Returns
Returns a string
value.
Examples
characters | input | Output |
---|---|---|
'-=' | '-==--Hello World---=---' |
|
'-' | '' | `` |
'-' | '-----------' | `` |
'-' | 'x-----------' |
|
'-' | '-----------x' |
|
'-' | '------x-----' |
|
'-' | 'x-----------x' |
|
Transformation job example
SQL
Query result
characters | input | Output |
---|---|---|
'-=' | '-==--Hello World---=---' |
|
Last updated