I would like to remove quotes from within strings. I read that you can do it in the set block with this as the value/expression:
replace({API_Response} ,/"/g,‘’)
Apply to: is {API_Response}
The /g should remove them globally within the string. That has no affect on the string though. Should this work, or is there a better way to do it?