我有一个包含域名的文档,例如
http://www.example.me/?p=1
http:/example.de/index.php
http://www.example.com/index.php/hello-world/
有不同的结局(.me .com .de ....)现在我只想保留.de结尾的行
谢谢
答案 0 :(得分:1)
答案 1 :(得分:0)
尝试使用此正则表达式进行域名搜索:
^https?:\/\/(www\.)?example\.de\/
答案 2 :(得分:0)
preg_match
可帮助您执行正则表达式匹配。您可以keep lines with .de
这样:
<?php
if (preg_match("#\.de#", "www.example.de")){
//Keep line
}
>