Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Visual Studio“在文件中查找”工具窗口查找所有包含特定短语但同时按非注释行过滤的行?
一定要有正则表达式?或正则表达式帮助的链接?
在“在文件中查找”窗口中选择“使用正则表达式”,然后在搜索框中输入以下短语:
^(?!(\s*/+)).*phrase
如果您希望该短语保留为一个单词:
^(?!(\s*/+)).*\s+phrase\s+
关于帮助:在正则表达式模式下,搜索框旁边有一个小按钮:[(a)+] 它会打开一个包含常用正则表达式命令的简短列表。在该列表的末尾有一个指向 msdn 文档的链接。