請幫忙,如果其中存在某個單詞,如何排除字符串的存在。例子:any text here my text any text word wrong any text
any text here my text any text true any text
any text here my text any text wrong any text此正則表達(dá)式標(biāo)記所有行 ( https://regex101.com/r/rrgEp6/1 ):here([a-z, ]{0,70})((?:(?! word))) (wrong|true)在這種情況下需要排除單詞 - “單詞”:any text here my text any text true any text
any text here my text any text wrong any text
2 回答

墨色風(fēng)雨
TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個贊
你可以使用
here((?:(?!\bword\b)[a-z ,]){0,70}) (wrong|true)
請參閱正則表達(dá)式演示
細(xì)節(jié)
here
- 一個字符串((?:(?!\bword\b)[a-z ,]){0,70})
- 第 1 組:小寫字母、空格或逗號,出現(xiàn) 0 到 70 次,不word
以整個單詞字符序列開頭(wrong|true)
- 第 2 組:wrong
或true
字符序列。
- 2 回答
- 0 關(guān)注
- 163 瀏覽
添加回答
舉報(bào)
0/150
提交
取消