duanfu7840 2012-04-23 16:13
浏览 29
已采纳

子模式中的相同反向引用,php pcre regex [关闭]

I found this at

http://www.php.net/manual/en/regexp.reference.subpatterns.php

(?|(Sat)ur|(Sun))day

this mean (Sat) and Sun will be matched at same order

but When I test with regexbuddy it occurr a error abt syntax Thanks

  • 写回答

1条回答 默认 最新

  • drdyf42880 2012-04-23 16:27
    关注

    This should work fine with a recent version of PCRE - did you make sure to switch regexbuddy into PCRE mode?

    You'll need a pretty recent version too. My PHP 5.2.6 install is too old (PCRE 6.6 2006-02-06), while PHP 5.2.17 (8.02 2010-03-19) is fine.

    This test PHP program:

    $a = "it is Sunday tomorrow";
    preg_match('/(?|(Sat)ur|(Sun))day/', $a, $m);
    print_r($m);
    

    Outputs this:

    Array
    (
        [0] => Sunday
        [1] => Sun
    )
    

    If your version of PCRE is too old, you'll get this error:

     Compilation failed: unrecognized character after (? at offset 2
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog