dongtang1910 2014-11-26 03:40
浏览 83
已采纳

使用PHP正则表达式替换换行符

I am trying to replace all the in a json string with a double pipe ||. Here is an example of a string :

{"comment":"test1
test2
test3"}';

Here is the regex I have done :

preg_match('/"comment":"(([^
\t"]*)([
\t]*))+"/', $a, $t);

The result of this preg_match is

Array
(
    [0] => "comment":"test1
test2
test3"
    [1] => 
    [2] => 
    [3] => 
)

I can't find what is wrong with my regexp.

Do I need a recursive pattern (?R) ?

Thanks.

  • 写回答

2条回答 默认 最新

  • dou4121 2014-11-26 03:46
    关注

    Use preg_replace function like below. I assumed that your input have balanced paranthesis.

    preg_replace('~(?:"comment"[^
    ]*|\G)\K
    ([^{}
    ]*)~', '||\1', $str)
    

    DEMO

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部