我有这个:
"{Table1: [{\"PropertyTaxReceiptAmt\":\"2200170.00\",\"WaterTaxReceiptAmt\":\"79265.00\"}]}"
我想要输出类似
PropertyTaxReceiptAmt:2200170.00
WaterTaxReceiptAmt:79265.00
答案 0 :(得分:0)
string json;
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 :(得分:0)
做与接受的答案相同的事情的简便得多的方法:
string json = "{Table1: [{\"PropertyTaxReceiptAmt\":\"2200170.00\",\"WaterTaxReceiptAmt\":\"79265.00\"}]}";
json = JObject.Parse(json)["Table1"].ToString();
Console.Write(json);
答案 2 :(得分:-1)
*
*
首先,选择要删除的字符,然后按 “ CTRL + d” ,现在将连续选择相同的字符,只需按退格键以删除该字符。