duanreng3439 2013-01-01 00:03
浏览 12
已采纳

捕获字符串,无条件结束

I'm trying to capture the middle part of a URL, that contains a conditional ending:

A URL can be of two sorts:

/a/b/(part/needed)
/a/b/(part/needed)/page/#

here's the regexp I use:

preg_match('@/a/b/(.*)(/page/\d)?@i', '/a/b/some/text/page/1', $matches);

returns

0=>"/a/b/some/text/page/1",
1=>"some/text/page/1"

It's ok but it includes the conditional ending which I don't want!

Can someone tell me how to not include the conditional string ending in it but still match when the last segment is present or absent?

  • 写回答

1条回答 默认 最新

  • doufu9947 2013-01-01 00:09
    关注

    By anchoring the expression with ^$ and making the first group non-greedy (.*?), you can get the segment you need. The .* alone is a greedy match, and will eat up everything that follows the .*.

    preg_match('@^/a/b/(.*?)(/page/\d)?$@i', '/a/b/some/text/page/1', $matches);
    //-----------^-------^^^-----------^
    print_r($matches);
    Array
    (
        [0] => /a/b/some/text/page/1
        [1] => some/text
        [2] => /page/1
    )
    

    If you don't need the /page/1, make that a non-capturing group (?:...).

    preg_match('@^/a/b/(.*?)(?:/page/\d)?$@i', '/a/b/some/text/more/page/1', $matches);
    //----------------------^^^
    print_r($matches);
    Array
    (
        [0] => /a/b/some/text/more/page/4
        [1] => some/text/more
    )
    

    regular-expressions.info has good information on character repetition with + and *, and the pitfalls of greediness.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 pyqt5读取ui文件报错
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?