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?
The character class [{}] will find all curly braces
[{}]
var address = "{Street Name}, {City}, {Country}"; address = address.replace( /[{}]/g, '' ); console.log( address ) // Street Name, City, Country