如何使用find和visual studio 2010找到带有单个'='的字符串

时间:2013-11-19 19:26:01

标签: regex visual-studio-2010

我尝试了以下两个表达式,以便在我的代码中搜索一个赋值。出于某种原因,既不起作用,也不明白为什么。我在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.*[=][^=]

上述两个表达式都与==的行匹配,但我只想查找内容为=的内容。

提前致谢!

1 个答案:

答案 0 :(得分:1)

你需要在“=”的两边都有[not“=”]:

m_Events.*[^=]=[^=]