求手机号码正则表达式

 我来答
手机用户83769
2013-12-11 · 超过49用户采纳过TA的回答
知道答主
回答量:110
采纳率:0%
帮助的人:123万
展开全部
完整版:#####函数代码######## 假设为myfunc.asp<%'正则表表达式验证函数 patrn-正则表达式 strng-需要验证的字符串 Function RegExpTest(patrn, strng) Dim regEx, retVal ' 建立变量。 Set regEx = New RegExp ' 建立正则表达式。 regEx.Pattern = patrn ' 设置模式。 regEx.IgnoreCase = False ' 设置是否区分大小写。 retVal = regEx.Test(strng) ' 执行搜索测试。 RegExpTest = retVal '返回不尔值,不符合就返回false,符合为true End Function%#####提交页面代码###### 假设为mypage.asp <form method="post" action="check.asp" 请输入E-mail地址:<input type=text name=email 请输入电话号码:<input type=text name=tel <input type=submit value="确定"</form#####验证页面######## 假设为check.asp <!--#include file="myfunc.asp"--<%tel=request.form("tel") email=request.form("email") dim founderr : founderr=false '建立变量,正确或者失败标记 '大家注意哦,顺便我在这里贡献一个正则表达式,同时验证电话号码和手机号码的! if RegExpTest("(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)", tel)=false then founderr=true regshow=regshow&"<li您输入的电话号码格式不正确"end ifif RegExpTest("^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$", email)=false then founderr=true
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式