防止 Visual Studio 尝试将 PDF 文件内部作为二进制数据进行搜索
我的解决方案有几个 pdf 文件,这些文件要么作为静态文件供下载,要么捆绑到解决方案中作为开发人员的方便参考。当搜索小文本字符串时,我经常会收到大量的二进制 unicode 乱码,这些内容充斥着搜索结果列表。我想要一种从搜索结果中排除 pdf 文件的方法。
澄清一下:我知道查看这些文件类型
组合框;但我不想手动添加/删除白名单(避免与生成具有任意扩展名的数据的第三方系统接口出现问题)。我想将 *.pdf 添加到 *.jpg 或 *.png 等文件的黑名单中,VS 不会尝试像文本一样进行搜索。允许 VS 正确搜索 .pdf 文件的东西将是一个可接受的替代方案。
My solution has several pdf files that are either served up as static files for download, or bundled into the solution as convenient references for the developer. When searching for small text strings I often get huge numbers of lines of binary-unicode gibberish that floods the search results list. I want a way to exclude pdf files from my search results.
To clarify: I'm aware of the Look at these file types
combobox; but I don't want to manually add/remove a whitelist (to avoid problems interfacing with 3rd party systems which produce data with arbitrary extensions). I want to add *.pdf to the black list of files like *.jpg or *.png that VS doesn't attempt to search as if they were text. Something that would allow VS to properly search a .pdf file would be an acceptable alternative.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用CTRL + SHIFT + F和以下正则表达式来搜索文本,例如
b
:使用PDF prolog来识别PDF文件:
参考
在可视化中使用正则表达式Studio
在 Visual Studio 2010 中搜索和导航代码
Unicode 类别
Visual Studio 技巧快速查找解决方案中的任何文件
在文件中查找:查找选项
在 Visual Studio 2010 中查找所有引用的改进
PDF 文件分析器
在 Python 中使用正则表达式解析 PDF 文件< /p>
Visual Studio 2012 新功能:解决方案资源管理器
Use CTRL + SHIFT + F and the following regexp to search for text, such as
b
:Use the PDF prolog to identify PDF files:
References
Using Regular Expressions in Visual Studio
Searching and Navigating Code in Visual Studio 2010
Unicode Categories
Visual Studio trick to quickly find any file in solution
Find in Files: Find Options
Improvements to Find All References in Visual Studio 2010
PDF File Analyzer
Parsing PDF file using Regular expresions in Python
Visual Studio 2012 New Features: Solution Explorer