I have the string "{Street Name}, {City}, {Country}" and want to remove all braces. The result should be "Street Name, City, County". How do I do that?
If you want to remove all occurrences of {
and }
whether or not they are matched pairs, you can do it like this:
var str = "{Street Name}, {City}, {Country}";
str = str.replace(/[{}]/g, "");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With