replace
Regular expression replacement of a pattern with a string.
Replaces the sub strings matching a regular expression with a new string value.
For example:
{{ "abcba"|replace:["b","x"] }}
The output will be the string “axcxa”.
If you do not specify the replacement value, the replacement value is assumed to be the empty string:
{{ "abcba"|replace:"b" }}
The output will be the string “aca”.
Note: This filter is inefficient, as it will compile and match a regular expression while serving the template. Try to do string replacements when you save your content, and not when you serve the content.