1.以https : // 和http : // 开头
2.空格,换行和字符串结尾
3.中间可以为任何字符
例如:
“符合标准的字符串 符合标准的字符串
符合标准的字符串”
可以匹配出来三个
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]);
}