How to replace all the Double quotes into both open and close curly brackets.
let str = "This" is my "new" key "string";
I tried with this regex
str.replace(/"/,'{').replace(/"/,'}')
But I end up with this:
{This} is my "new" key "string"
Here am getting only the first word is changing but i would like to change all the words. I want the result to be:
{This} is my {new} key {string}
Thanks in advance.