Removing quotes in strings

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?

Hi @Quarkburger

You can use the Set step with this expression:

{API_Response}.replace(/"/g,'')

CleanShot 2023-03-13 at 01.06.23

1 Like

Ah, thank you very much!