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 2013 中搜索以“E”结尾且文件扩展名为 .h 的文件名。我知道有 ctrl+shift+F 对话框,但它不搜索文件名。同样 ctrl+,转储所有内容,甚至文件内容。我只想搜索文件名。这个怎么做?
谢谢
您可以使用搜索解决方案资源管理器。快捷键 - Ctrl + ;
这是解决方案资源管理器顶部的一个小字段。
在字段中输入以下内容:*Eh
不用说 * 充当通配符,匹配 E 之前的 0 个或多个字符,文件将具有扩展名 .h。