Adobe Dreamweaver 中的正则表达式搜索
我的应用程序中有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用适用于 IP 的正则表达式查找所有文件。
参考这个问题,您可以使用以下表达式(修改为删除行锚点的开始/结束,因为 IP 地址可能是内联的而不是在自己的行上):
不要忘记在 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):
Don't forget to check 'regular expressions' in the dreamweaver find dialog & also select all the files you want to search through.