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