jaitsujin
(Christian)
1
How can I add expressions? None of my samples seem to work.
How can I replace all double quotes with blank using the below?
Evgeniy
(Evgeniy Evseychik)
2
Hello! Please use this workaround to replace double quotes with empty strings:
jaitsujin
(Christian)
3
Awesome. Thanks that seems to be working.
How would this look like if i was trying to replace the following each with a space.
ā & $ + % # : / @ ?
Evgeniy
(Evgeniy Evseychik)
4
Try this regular expression:
["&$+%#:/@?]
You can test your expressions in Regex Hero first and then use them in the workflow.
jaitsujin
(Christian)
5
That works great. Thank you!
jaitsujin
(Christian)
6
Hi, this worked great. I had one more question. How would i include a <br /> tag into the following?
["#$?*]
UPDATE: This doesn't seem to work.
(<br />)|["#$?&*]