数值是指以下 JSON 中不应包含在双引号中的值。我已经为此编写了一个一次性的解决方法,但是可以重复使用的通用 REReplace() 将是一个很好的帮助。
所以这
{
"collapse_key" : "demo",
"delay_while_idle" : true,
"registration_ids" : ["xyz"],
"data" : {
"key1" : "value1",
"key2" : "value2",
},
"time_to_live" : "3"
},
变成这样:
{
"collapse_key" : "demo",
"delay_while_idle" : true,
"registration_ids" : ["xyz"],
"data" : {
"key1" : "value1",
"key2" : "value2",
},
"time_to_live" : 3
},