用正则表达式来验证文本框的内容
if(x==null||x=="")
{
alert("文本框不能为空!");
return;
}
alert("验证通过");
//正则表达式来表示一连串的空格
下面的示例演示了replace方法将第一次出现的单词"The"替换为单词"A"的用法。
functionReplaceDemo(){
varr,re;//声明变量。
varss="Themanhittheballwiththebat.\n";
ss+="whilethefieldercaughttheballwiththeglove.";
re=/The/g;//创建正则表达式模式。
r=ss.replace(re,"A");//用"A"替换"The"。
return(r);//返回替换后的字符串。
}
varre=/string名/gi;
g表示全局查找,
i表示不区分大小写;
相关推荐
wangzhaotongalex 2020-10-20
wyq 2020-11-11
TLROJE 2020-10-26
风雨断肠人 2020-10-13
duanqingfeng 2020-09-29
rechanel 2020-11-16
cshanzhizi 2020-10-16
luofuIT成长记录 2020-09-22
phphub 2020-09-10
taomengxing 2020-09-07
MaggieRose 2020-08-19
flyingssky 2020-08-18
山水沐光 2020-08-18
jyj00 2020-08-15
AHuqihua 2020-08-09
山水沐光 2020-08-03