1.以https : // 和http : // 開頭
2.空格,換行和字符串結尾
3.中間可以為任何字符
例如:
“符合標准的字符串 符合標准的字符串
符合標准的字符串”
可以匹配出來三個
sorry,更新一下:
var data = "balabalbal";
var re= /https?:\/\/\S+(\s|\n)/gi;
var arrMactches = data.match(re)
for (var i=0;i < arrMactches.length ; i++)
{
alert(arrMactches[i]);
}