从字符串文本解析域

时间:2013-07-29 06:07:08

标签: php parsing

我想搜索我拥有的字符串并提取可能以.com .net等结尾的域名...

$string = "Just head over to nba.com";
$string = "visit cnn.net"; 

请帮我将上面的域名提取到变量中。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

if (preg_match_all('/\w+\.(com|net)/', $text, $matches)){
   print_r($matches);
}

第一场比赛将是:

echo $matches[0][0];