remove
Removes the specified string from the text.
Specification
{{ text | remove: string_to_remove }}
Parameter | Description | Example Values |
---|---|---|
text (required) | The source text. | “the quick brown fox” |
string_to_remove | The string to remove from the given text. | “the” |
Examples
{{ "It's nearly football season." | remove: "nearly" }}
This will output “It’s football season.”