标签: regex visual-studio-2010
如何在没有单引号或双引号的前导和尾随字符的情况下获取目标字?目前,下面的表达式匹配所有。我尝试插入[^']但它没有用。
[\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
答案 0 :(得分:0)
您可以使用此正则表达式
(^|[^'"])test([^'"]|$)