douhui1630 2016-03-17 00:34
浏览 29
已采纳

如何匹配字符串中特定范围之间的特定字符?

I have this string:

$str = "here is start of rage, also here is some text and here is the end of string";
//              ^^^^^                                                 ^^^
//                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Now I'm trying to remove all e letter between this range: [start - end]. Well I want this output:

$newstr = "here is start of rag, also hr is som txt and hr is th end of string";

How can I do that?

  • 写回答

4条回答 默认 最新

  • dougou2937 2016-03-17 01:56
    关注

    With preg_replace and the \G anchor:

    echo preg_replace('~(?:\G(?!\A)|\bstart\b)[^e]*\K(?:\Be|e(?!nd\b))~S', '', $str);
    

    details:

    ~
    (?:
        \G(?!\A)   # contiguous to the previous match, not at the start of the string
      |            # OR
        \bstart\b  # the word "start"
    )
    [^e]*          # all that is not an "e"
    \K             # exclude all previous matched characters from the whole match 
    (?:
        \Be        # an "e" that is not the start of a word
      |            # OR
        e(?!nd\b)  # an "e" that is not followed by "nd"
    )
    ~  
    S  # the STUDY modifier that tries to improve non-anchored patterns
    

    This pattern find one "e" at a time. Once the word "start" is found, the \G anchor forces the next match to be contiguous, since it matches the position at the end of the previous match. When the word "end" is reached (?:\Be|e(?!nd\b)) fails and the contiguity is broken (until an other eventual word "start").

    Note that this pattern doesn't check if the word "end" exists in the string (but it can easily be done). If the word "end" doesn't exist, all "e" will be removed from the word "start" until the end of the string.

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

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度