0

我想使用 preg_replace() 替换 PHP 中 {} 之间的字符串中的“和”。

所以:

This is "some" {"text" : 'duudu', 'duuue' : "yey" }

应该:

This is "some" {\"text\" : \"duudu\", \"duuue\" : \"yey\" }

你能建议吗?

4

1 回答 1

1

您可以使用 preg_replace_callback 来解决这个问题。考虑以下代码:

$str = 'This is "some" {"text" : \'duudu\', \'duuue\' : "yey" } "and" {"some", "other"} "text"';
echo preg_replace_callback('~({[^}]*})~', function($m) {
       return preg_replace('~(?<!\\\\)[\'"]~', '\"', $m[1]);
    }, $str) . "\n";

更新:对于可能喜欢纯正则表达式解决方案的纯粹主义者:

$repl= preg_replace('~(?<!\\\\) [\'"] (?! (?: [^{}]*{ [^{}]*} ) * [^{}]* $)~x',
                    '\"' , $str);

输出:

This is "some" {\"text\" : \"duudu\", \"duuue\" : \"yey\" } "and" {\"some\", \"other\"} "text"


现场演示:http: //ideone.com/PfGzxd

于 2013-04-16T13:39:13.557 回答