违反德米特定律的搜索工具?

发布于 2024-09-14 06:15:34 字数 1536 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

终难愈 2024-09-21 06:15:34

如果您只是寻找 something.somethingelse.violation,那么您可以使用 Visual Studio。

在查找对话框中,选中底部的“使用”框,然后选择“正则表达式”。

不是很强大,但您可以使用 <[:a_]+\.([:a_]+\.)+[:a_]+ 来查找上面的模式。

更好的工具是 grep 或解决方案目录中的类似工具,因此您可以使用更强大的正则表达式选项,例如负向后查找,这将允许您排除诸如 using 指令和命名空间声明。

适用于 Windows 的 grep

您可能可以非常快速地编写一个 .NET 应用程序来递归给定的目录并使用 .NET Regex 搜索相同的 .cs 和/或 .vb 文件,它具有环视功能,但当然使用 VS 的优点是您可以保留在源代码编辑器中。

If you're just looking for something.somethingelse.violation, then you can use Visual Studio.

In the find dialog, check the box at the bottom to "Use" and select "Regular Expressions."

Not very robust, but you can use <[:a_]+\.([:a_]+\.)+[:a_]+ to find the pattern above.

A better tool would be grep or similar on the solution directory, so you can use more powerful regex options like negative lookbehind, which would allow you to exclude things like using directives and namespace declarations.

grep for Windows

You could probably very quickly write a .NET app that would recurse a given directory and search .cs and/or .vb files for same, using .NET Regex, which has lookarounds, but of course the advantage of using VS is that you remain right in the source code editor.

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