0

如何在没有单引号或双引号的前导字符和尾随字符的情况下获取目标单词?目前,下面的表达式匹配所有。我尝试插入 [^'] 但它不起作用。

[\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
4

1 回答 1

0

你可以使用这个正则表达式

(^|[^'"])test([^'"]|$)
于 2013-04-23T15:44:25.100 回答