匹配中文字符的正则表达式: [\u4e00-\u9fa5]
匹配双字节字符(包括汉字在内):[^\x00-\xff]
匹配首尾空白字符的正则表达式:^\s*|\s*$
如:
function isChinese(temp)
{
var re = /^\s*|\s*$/;
if(re.test(temp))
return true;
return false;
}
alert(isChinese(" 中文 "));
匹配空白字符的正则表达式:\s*|\s*
匹配网址URL的正则表达式:(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?
原文链接:https://www.f2er.com/regex/362429.html