json 文本分割 reg 表达式或解析器

发布于 2024-11-09 09:16:56 字数 541 浏览 0 评论 0原文

$var ="
   { 
        key : { 
            key_deep :  val\{ue   /* should be "val{ue" as { is escaped  */
        } , 
        key2 : value
    }

";
print_r(preg_split('//',$var));
// array( 
//    array( 
//       'key'=> array(
//           'key_deep'=> 'val{ue'
//        )
//    ), 
//    array('key2'=>'value')
// );

是否有正则表达式可以使用 php 中的 preg_split 来分割它?

基本上我需要与 json_decode() 相同,但不需要 BOTH valuekey 上的引号,唯一转义的是四个字符 \{ \, \} \:

$var ="
   { 
        key : { 
            key_deep :  val\{ue   /* should be "val{ue" as { is escaped  */
        } , 
        key2 : value
    }

";
print_r(preg_split('//',$var));
// array( 
//    array( 
//       'key'=> array(
//           'key_deep'=> 'val{ue'
//        )
//    ), 
//    array('key2'=>'value')
// );

is there a regular expression to split this using preg_split in php?

basically I need the same as json_decode() but without the need of the the quotes on BOTH value and key and the only thing escaped are four characters \{ \, \} \:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

む无字情书 2024-11-16 09:16:56

一方面,json 不正确,并且会在 json_decode 上抛出错误。

此处阅读 json 的规范

json 的一种正确实现是:

$var ='
   { 
        "key" : { 
            key_deep :  "val\{ue" 
        } , 
        "key2" : "value"
   }
';

此外 json_decode 永远不会产生一个 Array ,它会生成一个 object(stdClass) ,除非您添加 true 参数

Well for one thing that json is incorrect and will spew out an error on json_decode.

read the specs for json here

One correct implementation of the json is:

$var ='
   { 
        "key" : { 
            key_deep :  "val\{ue" 
        } , 
        "key2" : "value"
   }
';

Also json_decode never yields an Array it yields a object(stdClass) unless you add the true parameter

春花秋月 2024-11-16 09:16:56

考虑到此处可能发生任意嵌套,您可能想要查看解析器而不是正则表达式。

尝试:

http://pear.php.net/package/PHP_ParserGenerator/redirected

< a href="http://www.hwaci.com/sw/lemon/" rel="nofollow">http://www.hwaci.com/sw/lemon/

http://www.google.com/search ?sourceid=chrome&ie=UTF-8&q=php+解析器+生成器

You're probably going to want to look at a parser rather than a regular expression, given the arbitrary nesting that could occur here.

Try:

http://pear.php.net/package/PHP_ParserGenerator/redirected

or

http://www.hwaci.com/sw/lemon/

or

http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=php+parser+generator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文