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.

Argument evaluation

  • charToRemove: Evaluated in the enclosing context for each character tested; whitespace input has a separate check.

Examples

"Hello World" | remove-chars("l")  "Heo Word"

Kind: Function
Scope: text/character
Aliases: text-to-remove-chars


This site uses Just the Docs, a documentation theme for Jekyll.