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条)

报告相同问题?

悬赏问题

  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 Macbookpro 连接热点正常上网,连接不了Wi-Fi。
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程
  • ¥20 我要一个分身加定位两个功能的安卓app