php正则匹配json数组,正则表达式解析JSON对象数组?
phpjson格式化输出我正在尝试将JSON对象数组解析为C#中的字符串数组。我可以从JSON对象提取数组,但不能将数组字符串拆分为单个对象的数组。
我有这个测试字符串:
string json = "{items:[{id:0,name:\"Lorem Ipsum\"},{id:1,name"
+ ":\"Lorem Ipsum\"},{id:2,name:\"Lorem Ipsum\"}]}";
现在,我现在正在使⽤以下正则表达式将项⽬拆分为单个对象。现在,它们是2个单独的正则表达式,直到我解决第⼆个正则表达式为⽌:
Regex arrayFinder = new Regex(@"\{items:\[(?[^\]]*)\]\}"
, RegexOptions.ExplicitCapture);
Regex arrayParser = new Regex(@"((?\{[^\}]\}),?)+"
, RegexOptions.ExplicitCapture);
在arrayFinder正则表达式的⼯作,我期望它,但对于原因,我不明⽩的⽅式,arrayParser正则表达式不会在所有的⼯作。我要做的就是将各个项⽬拆分成⾃⼰的字符串,这样我就得到了⼀个列表:
{id:0,name:"Lorem Ipsum"}
{id:1,name:"Lorem Ipsum"}
{id:2,name:"Lorem Ipsum"}
这个列表是string[]数组还是a
Group或Match集合都没有关系,但是我对如何拆分对象感到困惑。使⽤上⾯声明的arrayParser和json字符串,我尝试了以下代码,我认为该代码可以正常使⽤:
string json = "{items:[{id:0,name:\"Lorem Ipsum\"},{id:1,name"
+ ":\"Lorem Ipsum\"},{id:2,name:\"Lorem Ipsum\"}]}";
Regex arrayFinder = new Regex(@"\{items:\[(?[^\]]*)\]\}"
, RegexOptions.ExplicitCapture);
Regex arrayParser = new Regex(@"((?\{[^\}]\}),?)+"
, RegexOptions.ExplicitCapture);
string array = arrayFinder.Match(json).Groups["items"].Value;
// At this point the 'array' variable contains:
// {id:0,name:"Lorem Ipsum"},{id:1,name:"Lorem Ipsum"},{id:2,name:"Lorem Ipsum"}
// I would have expected one of these 2 lines to return
// the array of matches I'm looking for
CaptureCollection c = arrayParser.Match(array).Captures;
GroupCollection g = arrayParser.Match(array).Groups;
有⼈可以看到我在做什么错吗?我完全被这个困扰。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论