doubi8383 2016-10-19 08:12
浏览 70
已采纳

preg_quote忽略preg_match_all中的尾随点

Regex

preg_match_all('@(\b' . preg_quote($needle,'@') . '\b)@is', $haystack, $matches);

Haystack

(Job: NAS-Inkrementell) Operation succeeded.

Needle

Operation succeeded --> works

Operation succeeded. --> does not work

I did some tests:

Alternative Haystack

(Job: NAS-Inkrementell) Op.eration succeeded.

Alternative Needle

Op.eration succeeded --> works

So, the needle does get escaped correctly, as I can see by dump(preg_quote($needle,'@')); --> Operation succeeded\.

What would be the correct way to include a trailing dot?

For quick reference: http://www.phpliveregex.com/p/hzl

Thanks

EDIT

I also need to distinguish between My-NAS and My-NAS-2 in the haystack when the needle is My-NAS, so I need the trailing \b as well.

EDIT2

ideone.com/Suzz2E I want it to be 1 1 0 1 instead of 1 1 1 1, so MyNAS should not be found if there is only MyNAS-2 in the haystack.

  • 写回答

1条回答 默认 最新

  • duanke0178 2016-10-19 09:18
    关注

    The . is not a word character, and \.\b pattern requires a word char after .. You need to implement custom word boundaries.

    Since you need to match strings that are not preceded with a word char or a hyphen and that are not followed with a word char or hyphen, you may use

    preg_match_all('@(?<![\w-])' . preg_quote($needle1,'@') . '(?![\w-])@is', $haystack, $matches)
    

    See the regex demo.

    See the PHP demo:

    $haystack1 = "(Job: NAS-Inkrementell) Operation succeeded. MyNAS-2 reports duty.";
    
    $needle1 = "Operation succeeded";
    echo preg_match_all('@(?<![\w-])' . preg_quote($needle1,'@') . '(?![\w-])@is', $haystack1, $matches1) ."
    ";
    
    $needle2 = "Operation succeeded.";
    echo preg_match_all('@(?<![\w-])' . preg_quote($needle2,'@') . '(?![\w-])@is', $haystack1, $matches2) ."
    ";
    
    $needle3 = "MyNAS";
    echo preg_match_all('@(?<![\w-])' . preg_quote($needle3,'@') . '(?![\w-])@is', $haystack1, $matches3) ."
    ";
    
    $needle4 = "MyNAS-2";
    echo preg_match_all('@(?<![\w-])' . preg_quote($needle4,'@') . '(?![\w-])@is', $haystack1, $matches4) ."
    ";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 连续两帧图像高速减法
  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写