remove
string | remove: string
returns string
Removes any instance of a substring inside a string.
{{ "I can't do it!" | remove: "'t" }}
Code
{{ "I can't do it!" | remove: "'t" }}Output
I can do it!
Output
I can do it!Was this page helpful?
Removes any instance of a substring inside a string.
{{ "I can't do it!" | remove: "'t" }}I can do it!