正则表达式:
https?://([a-zA-Z0-9-_]{1,50}[.])*[a-zA-z0-9-_]{1,50}[.]([(org)(gov)(com)]{3}|[(us)(fi)]{2})
测试者:
http://regex.powertoy.org/
编码:
if(preg_match_all('|https?://([a-zA-Z0-9-_]{1,50}[.])*[a-zA-z0-9-_]{1,50}[.]([(org)(gov)(com)]{3}|[(us)(fi)]{2})|',$row['text'],$links))
{
print_r($links[0]);
/*for($x=0;$x<count(links[0]);$x++)
{
$row['text'] = str_replace($links[0][$x], 'link' . $link[0][$x] . 'link', $row['text'];
}*/
}else{
echo 'Failure!';
}
正则表达式匹配测试器中的 URL,但在 HTML/PHP 前端完全不匹配。我不确定问题是什么。正则表达式/代码的要点基本上是匹配 URL,而不管子域的数量。