douping1825 2016-10-11 09:02
浏览 16
已采纳

PHP找到“string”后替换下一个匹配项

I would like to know how to find and replace the next ; after command

command "bleh", 1234, 567;

to

command ("bleh", 1234, 567);

This way is important, because string between command and ; can be completly different. Thank you for your help!

  • 写回答

1条回答 默认 最新

  • dongwei2882 2016-10-11 09:05
    关注

    You can use regular expressions and preg_replace():

    $v = 'command "bleh", 1234, 567;';
    
    $v = preg_replace('/command (.*?);/', 'command (\\1);', $v);
    echo $v;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法