Regular expressions: find string without substring

后端 未结 2 1642
渐次进展
渐次进展 2020-12-03 01:11

I have a big text:

\"Big piece of text. This sentence includes \'regexp\' word. And this
sentence doesn\'t include that word\"

I need to fi

2条回答
  •  有刺的猬
    2020-12-03 02:10

    With an ignore case option, the following should work:

    \bthis\b(?:(?!\bregexp\b).)*?\bword\b
    

    Example: http://www.rubular.com/r/g6tYcOy8IT

    Explanation:

    \bthis\b           # match the word 'this', \b is for word boundaries
    (?:                # start group, repeated zero or more times, as few as possible
       (?!\bregexp\b)    # fail if 'regexp' can be matched (negative lookahead)
       .                 # match any single character
    )*?                # end group
    \bword\b           # match 'word'
    

    The \b surrounding each word makes sure that you aren't matching on substrings, like matching the 'this' in 'thistle', or the 'word' in 'wordy'.

    This works by checking at each character between your start word and your end word to make sure that the excluded word doesn't occur.

提交回复
热议问题