从json字符串中删除字符

时间:2018-07-21 09:45:39

标签: c# arrays json json.net

我有这个:

"{Table1: [{\"PropertyTaxReceiptAmt\":\"2200170.00\",\"WaterTaxReceiptAmt\":\"79265.00\"}]}"

我想要输出类似

PropertyTaxReceiptAmt:2200170.00
WaterTaxReceiptAmt:79265.00

3 个答案:

答案 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);

提琴:https://dotnetfiddle.net/PLPEno

答案 2 :(得分:-1)

*

使用VS代码编辑器...!很简单

*

首先,选择要删除的字符,然后按 “ CTRL + d” ,现在将连续选择相同的字符,只需按退格键以删除该字符。