I am trying to use the filter my app but getting syntax errors. Its not liking passing a regex pattern of any kind. Its only working with a string replace.
This works
{{ model.photos[1].caption | string.replace:'Mandatory':'' }}
Not working
{{ model.photos[1].caption | string.replace:/Mandatory/g:'' }}
Getting unexpected token and Mandatory
I am trying to use the filter my app but getting syntax errors. Its not liking passing a regex pattern of any kind. Its only working with a string replace.
This works
{{ model.photos[1].caption | string.replace:'Mandatory':'' }}
Not working
{{ model.photos[1].caption | string.replace:/Mandatory/g:'' }}
Getting unexpected token and Mandatory