在文本文件php中查找url

时间:2016-03-10 17:33:19

标签: php regex replace find

我需要一个用于搜索的php代码,并在Text(.txt)文件中找到所有网址,但网址是从webhost开始的

例如:

的text.txt:

srv=fiware | subsrv=/

显示site.com的php代码

请帮帮我

感谢

1 个答案:

答案 0 :(得分:0)

您可以使用否定前瞻来确保http://后面没有webhost

 (?:https?:\/\/)(?!webhost)(.*?\.(?:com|org))

将匹配http://包括.com或.org之后的任何内容,除非在其后找到webhost