STRIP_PREFIX
Remove the given prefix from the beginning of the string.
Syntax
STRIP_PREFIX(input, prefix)
Arguments
| Name | Type | Description | Default Value |
|---|---|---|---|
| input | string | ||
| prefix | string |
Returns
Returns a string value.
Examples
| input | prefix | Output |
|---|---|---|
| "((foo))" | "(" | (foo))
|
| "foo" | "(" | foo
|