此问题已在此处有答案:
Safely turning a JSON string into an object(28回答)
昨天关门了。
我想从以下Object的字符串表示中提取三个变量(friendCount
、pnCount
和allCount
):
'{"friendCount":5,"pnCount":0,"allCount":5}'
我想使用RegEx或类似的,但我没有进一步的想法。字符串中的数字可以在0到大约100之间
此问题已在此处有答案:
Safely turning a JSON string into an object(28回答)
昨天关门了。
我想从以下Object的字符串表示中提取三个变量(friendCount
、pnCount
和allCount
):
'{"friendCount":5,"pnCount":0,"allCount":5}'
我想使用RegEx或类似的,但我没有进一步的想法。字符串中的数字可以在0到大约100之间
3条答案
按热度按时间fd3cxomn1#
如果这是一个字符串,那么解析它...
如果它已经是一个对象,就引用它
flseospp2#
试试这个
wvmv3b1j3#
如果你想要Regex,它可以像this一样完成:
}