replaceAll is not working as desired

0
I have one requirement that I wan to replace all backslashes from my string. I am using: replaceAll('Some client: {\"value\":\"value\"}','\','') it is throwing error. when i am using replaceAll('Some client: {\"value\":\"value\"}','\\','') then it is not showing error but also not replacing the values as desired. If any one can help?
asked
1 answers
1

The double backslash is the way to do this, do note that the value in the variables panel in Studio Pro will keep showing the backslashes as these are used as escape characters there.

image.png

After replacement.

Now when double clicking the row:

image.png

answered