這幾天在寫一個小程式的時候,需要用到正規表示式來匹配使用者輸入文字中的URL位址,然後將URL位址替換成可以點擊的連結。 URL位址的匹配,我想這應該是大家在做驗證處理中常會用到的,這裡就把我整合的一個比較完整的表達式給出來:
這個表達式可以符合 http,https,ftp,ftps以及IP位址的URL位址。還算是URL位址匹配計較完善的。利用這個表達式我寫了兩個小函數,將用戶留言的URL地址替換成可點擊的鏈接,沒有什麼太難的,就是利用JavaScript 的 replace() 函數來實現替換 URL 為 link:
JavaScript版:
return text;
};
PHP版:
函數replace_URLtolink($text) {
// 抓取任何看起來像 URL 的內容...
$urls = array();
// 建置模式
$scheme = '(https?://|ftps?://)?';
$www = '([w] .)';
$local = 'localhost';
$ip = '(d{1,3}.d{1,3}.d{1,3}.d{1,3})';
$name = '([w0-9] )';
$tld = '(w{2,4})';
$port = '(:[0-9] )?';
$the_rest = '(/?([w#!:.? =&%@!-/] ))?';
$pattern = $scheme.'('.$ip.$port.'|'.$www.$name.$tld.$port.'|'.$local.$port.')'.$the_rest;
$pattern = '/'.$pattern.'/is';
// 取得 URL
$c = preg_match_all($pattern, $text, $m);
如果 ($c) {
$urls = $m[0];
}
// 取代所有 URL
if (!empty($urls)) {
foreach ($urls as $url) {
$pos = strpos('http://', $url);
if (($pos && $pos != 0) || !$pos) {
$fullurl = 'http://'.$url;
} 其他 {
$fullurl = $url;
}
$link = ''.$url.'';
$text = str_replace($url, $link, $text);
}
}
返回 $text;
}