Adobe Dreamweaver 中的正则表达式搜索

发布于 2024-12-25 12:40:54 字数 207 浏览 2 评论 0原文

我的应用程序中有 1000 个 PHP 文件,该应用程序是由另一位程序员开发的。 在我想要搜索的 PHP 文件中 - PHP 文件是否使用了任何 IP 地址(..*.)。

我想在 Dreamweaver 中使用正则表达式是可能的。我正在寻找它,同时如果有人熟悉的话请指导我。

谢谢。

I have 1000 of PHP files in an application which is developed by another programmer.
In the PHP files I would like to search - the PHP files has used any IP address or not (..*.).

I guess it is possible in dreamweaver using regular expression. I am searching for it, meanwhile if any one is familiar with that please guide me.

Thanks.

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

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

发布评论

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

评论(1

下壹個目標 2025-01-01 12:40:54

使用适用于 IP 的正则表达式查找所有文件。

参考这个问题,您可以使用以下表达式(修改为删除行锚点的开始/结束,因为 IP 地址可能是内联的而不是在自己的行上):

\b(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\b

不要忘记在 Dreamweaver 查找对话框中检查“正则表达式”还选择您要搜索的所有文件。

Do a find over all files using a regex that works for IPs.

Referring to this question, you can use the following expression (modified to remove the start/end of line anchors as the IP addresses may be inline instead of on their own line):

\b(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\b

Don't forget to check 'regular expressions' in the dreamweaver find dialog & also select all the files you want to search through.

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