我需要一個regex找到除了this String
例如數據事情是:正則表達式來找到任何東西,除了「這個字符串」
this is one line with this string only this should not match
this is another line but has no string in
this String is another
and then this line should match also
我想找到並突出顯示整行,太行 this is one line with this string
是隻有一個將被選中。
我試過^(?!(this String)$)
但是這找到零長度匹配,所以沒有太大的幫助,我試着在各個地方添加.*
,但不明白該怎麼做。
什麼工具您使用? – nhahtdh
您是否試過'^(?:(?!\ b(?:red | blue | green)\ b)。)* $'?順便說一句,爲什麼',然後這條線不應該匹配'不應該匹配?它裏面沒有'this string'。 –
「紅色,藍色」如何進入畫面? – vks