replace
Replace one or more strings or regular expressions.
Syntax
{{ value | replace:"old":"new" }}{{ value | replace:("a":"b", "c":"d") }}Example
Basic usage
1{2 "message": "hello world"3}1{{ message | replace:"e":"a","o":"0" }}1hall0 w0rldBehavior
- Each quoted search value is followed by a colon and its replacement.
- Regular expressions may include flags, for example "/[aeiou]/g".