如何獲得沒有單引號或雙引號的前導和後綴字符的目標單詞?目前下面的表達式匹配全部。我嘗試插入[^'],但沒有奏效。如何從正則表達式中排除前導單引號或雙引號
[\b(?i)Test\b]
test - match
Test - match
TEST - match
'test' - I do not want this to match
"test" - I do not want this to match
如何獲得沒有單引號或雙引號的前導和後綴字符的目標單詞?目前下面的表達式匹配全部。我嘗試插入[^'],但沒有奏效。如何從正則表達式中排除前導單引號或雙引號
[\b(?i)Test\b]
test - match
Test - match
TEST - match
'test' - I do not want this to match
"test" - I do not want this to match
嗎? – Izzy 2013-04-23 16:27:41
我想匹配測試而不是'測試'的段落,並忽略套管。 – TroyS 2013-04-23 16:33:04