用正则表达式来验证文本框的内容

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表示不区分大小写;

相关推荐