[Solved] Remove character from json string


string json = "{Table1: [{\"PropertyTaxReceiptAmt\":\"2200170.00\",\"WaterTaxReceiptAmt\":\"79265.00\"}]}";
json = json.Replace("\\", string.Empty);
json = json.Trim('"');
json = json.Replace("{Table1:", string.Empty);
json = json.Remove(json.Length -1,1);
Console.Write(json);

1

solved Remove character from json string