remove-chars
text →
remove-chars(
charToRemove: text
) → text
Returns the argument value without the specified character. If the argument and the parameter values are white-space characters then it returns empty.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
charToRemove | text | Yes | The char to be removed from the argument string. |
Examples
"Hello World" | remove-chars("l") → "Heo Word"
Kind: Function
Scope: text/character
Aliases: text-to-remove-chars