如何修复此URL正则表达式以匹配字符串末尾的URL?

时间:2015-04-05 03:36:15

标签: php html regex string

我发现这个匹配regexp的精彩网址来自另一个答案,它在字符串中获取了网址,但只有在后跟空格时才有效。

preg_replace('#(https?|ftp)://[^ ]+ #i', '', $s['Text']);

我如何修改它,以便它也匹配字符串最后的URL,后面没有任何内容?

1 个答案:

答案 0 :(得分:1)

为了与所有类型的网址匹配,以下代码可以为您提供帮助:

<?php

$content = '<html>

<title>Random Website I am Crawling</title>

<body>

Click <a href="http://clicklink.com">here</a> for foobar

Another site is http://foobar.com';

$regex = "((https?|ftp)\:\/\/)?"; // SCHEME
$regex .= "([a-z0-9+!*(),;?&=\$_.-]+(\:[a-z0-9+!*(),;?&=\$_.-]+)?@)?"; // User and Pass
$regex .= "([a-z0-9-.]*)\.([a-z]{2,4})"; // Host or IP
$regex .= "(\:[0-9]{2,5})?"; // Port
$regex .= "(\/([a-z0-9+\$_-]\.?)+)*\/?"; // Path
$regex .= "(\?[a-z+&\$_.-][a-z0-9;:@&%=+\/\$_.-]*)?"; // GET Query
$regex .= "(#[a-z_.-][a-z0-9+\$_.-]*)?"; // Anchor


$matches = array(); //create array
$pattern = "/$regex/";

preg_match_all($pattern, $content, $matches); 

print_r(array_values(array_unique($matches[0])));
echo "<br><br>";
echo implode("<br>", array_values(array_unique($matches[0])));


?>