replace-chars
text →
replace-chars(
charToReplace: text,
charReplacing: text
) → text
Returns the argument value where a specific char has been replaced by another, both specified as parameters.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
charToReplace | text | Yes | The char to be replaced from the argument string. |
charReplacing | text | Yes | The replacing char from the argument string. |
Examples
"Hello World" | replace-chars("l", "x") → "Hexxo Worxd"
Kind: Function
Scope: text/character
Aliases: text-to-replace-chars