How can I add expressions? None of my samples seem to work.
How can I replace all double quotes with blank using the below?
How can I add expressions? None of my samples seem to work.
How can I replace all double quotes with blank using the below?
Awesome. Thanks that seems to be working.
How would this look like if i was trying to replace the following each with a space.
“ & $ + % # : / @ ?
Try this regular expression:
["&$+%#:/@?]
You can test your expressions in Regex Hero first and then use them in the workflow.
That works great. Thank you!