asp 实现检测字符串是否为纯字母和数字组合的函

网络编程 2021-07-05 10:58www.168986.cn编程入门
<%
'
'函数CheckString(strng)
'参数strng,待验证字符串
'作者阿里西西
'日期2007/7/13
'描述检测字符串是否为纯字母和数字组合
'示例<%=CheckString(strng)%>
'
Function CheckString(strng)
    CheckString = true
    Dim regEx, Match
    Set regEx = New RegExp
    regEx.Pattern = "^[A-Za-z0-9]+$"
    regEx.IgnoreCase = True
    Set Match = regEx.Execute(strng)
    if match.count then CheckString= false
End Function
%>
检测是否为中文字符
<%
'
'函数CheckChinese(strng)
'参数strng,待验证字符
'作者阿里西西
'日期2007/7/13
'描述检测是否为中文字符,返回值中文为true,否则false
'示例<%=CheckChinese(strng)%>
'
Function CheckChinese(strng)
    CheckChinese = true
    Dim regEx, Match
    Set regEx = New RegExp
    regEx.Pattern = "\||\#|\&|\?|\@|\%|\|\/|\.|\,|\;|\'|\:|\-|\_|\+|\^|\""|\=|\<|\>|\ "
    regEx.IgnoreCase = True
    Set Match = regEx.Execute(strng)
    if match.count then CheckChinese= false
End Function
%>

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by