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?
Use this javascript simple code in your respective function to remove braces :
var str = '{Street Name}, {City}, {Country}'; str = str.replace(/{/g, '').replace(/}/g, '');