asp 正则表达式检测http开头的函数
导读:收集整理的这篇文章主要介绍了asp 正则表达式检测http开头的函数,觉得挺不错的,现在分享给大家,也给大家做个参考。 '################################...
收集整理的这篇文章主要介绍了asp 正则表达式检测http开头的函数,觉得挺不错的,现在分享给大家,也给大家做个参考。 '#################################### '函数:ishttp[str]
'参数:str,待处理的字符串
'作者:木木
'日期:2007/7/12
'描述:检测HTTP连接地址或地址栏是否以HTTP开头
'示例:%=ishttp(http://www.alixixi@R_126_1718@)%>
'####################################
Function ishttp(str)
Dim regEx
Set regEx = New RegExp
regEx.Pattern = "^(http|HTTP)[A-Za-z]{ 0,1} \:\/\/"
ishttp = regEx.test(str)
End function
验证邮件地址是否符合标准
%
'******************************
'函数:iSEMail(strng)
'参数:strng,待验证的邮件地址
'作者:阿里西西
'日期:2007/7/13
'描述:验证邮件地址是否符合标准
'示例:%=isemail(ali@alixixi.com)%>
'******************************
Function isemail(strng)
isemail = false
Dim regEx, match
Set regEx = New RegExp
regEx.Pattern = "^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$"
regEx.IgnoreCase = True
Set Match = regEx.Execute(strng)
if match.count then isemail= true
End Function
%>
正则表达式检测中国移动电话手机号码'*********************************************************
'函数:mobilecheck[str]
'参数:str,待处理的字符串
'作者:木木
'日期:2007/7/12
'描述:检测移动电话手机号码
'示例:%=mobilecheck("13912345678")%>
'*********************************************************
Function mobilecheck(str)
Dim regEx
Set regEx = New RegExp
regEx.Pattern = "^(13[4-9]|15(8|9))\d{ 8} $"
mobilecheck= regEx.Test(str)
End Function
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: asp 正则表达式检测http开头的函数
本文地址: https://pptw.com/jishu/595372.html