我试图找到Visual Studio中的所有字符串文字,这些文字不是空的而且没有注释掉,所以我使用正则表达式搜索
^((?!//).)*".+"
我希望与该行匹配
get { return System.Environment.UserName.ToUpper() == "MYUSERNAME"; }
但不是
/// Initializes a new instance of the <see cref="ApplicationContext"/> class.
这似乎与我在http://regexpal.com的正则表达式测试器上的要求相匹配,但在Visual Studio中它没有给出任何结果。
这里可能出现什么问题?
答案 0 :(得分:1)