我尝试了以下两个表达式,以便在我的代码中搜索一个赋值。出于某种原因,既不起作用,也不明白为什么。我在Visual Studio 2010中使用“查找和替换”对话框。
// I thought that :b was the ms code for whitespace
m_Events.*[=][:b]
// I thought that [=][^=] will match an = followed by anything except another =.
m_Events.*[=][^=]
上述两个表达式都与==
的行匹配,但我只想查找内容为=
的内容。
提前致谢!
答案 0 :(得分:1)
你需要在“=”的两边都有[not“=”]:
m_Events.*[^=]=[^=]