dsk95913 2012-03-05 17:22
浏览 22
已采纳

尽管preg_quote,工作正则表达式模式在PHP中不起作用

The pattern below seems to work in regex editors, but it doesn't work in PHP (no error). I thought by adding delimiters and running the pattern through preg_quote would address this. Would appreciate any help on what step I'm missing here.

Code sample:

$pattern = '%(?<=@address|.)singleline(?=[^\]\[]*\])%';  
$pattern = preg_quote($pattern);
$output  = preg_replace($pattern, "", $output);

HTML Sample:

  <p>[@address|singleline]</p>
  • 写回答

2条回答 默认 最新

  • doulezhi5326 2012-03-05 17:38
    关注

    preg_quote escapes characters that are regular expression syntax characters. These include . \ + * ? [ ^ ] $ ( ) { } = ! < > | : -. Try not using preg_quote.

    $pattern = '%(?<=@address|.)singleline(?=[^\]\[]*\])%';  
    $output  = preg_replace($pattern, "", $output);
    

    EDIT: You might want to use preg_quote if you had content you wanted to include in your regex pattern which contained characters used in regex syntax. For example:

    $input = "item 1 -- total cost: $5.00";
    $pattern = "/total cost: " . preg_quote("$5.00") . "/";
    // $pattern should now be "/total cost: \$5.00/"
    $output = preg_replace($pattern, 'five dollars', $input);
    

    In this case, you need to escape the $ because it is used in the regex syntax. To search for it, your regex should use \$ instead of $. Using preg_quote performs this alteration for you.

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

报告相同问题?

悬赏问题

  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)