防止 Visual Studio 尝试将 PDF 文件内部作为二进制数据进行搜索

发布于 2024-12-11 19:49:15 字数 415 浏览 0 评论 0原文

我的解决方案有几个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴梦长久 2024-12-18 19:49:15

我想将 *.pdf 添加到 *.jpg 或 *.png 等文件的黑名单中,VS 不会像文本一样尝试搜索这些文件。

使用CTRL + SHIFT + F和以下正则表达式来搜索文本,例如b

^\w+b\w+$

使用PDF prolog来识别PDF文件:

^%PDF-1

参考

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.

Use CTRL + SHIFT + F and the following regexp to search for text, such as b:

^\w+b\w+$

Use the PDF prolog to identify PDF files:

^%PDF-1

References

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文