asp 中文字符 asp检测是否为中文字符函数
人气:0想了解asp检测是否为中文字符函数的相关内容吗,在本文为您仔细讲解asp 中文字符的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:asp,检测,是否为中文字符,下面大家一起来学习吧。
<% '******************************
'函数:CheckChinese(strng)
'参数:strng,待验证字符
'描述:检测是否为中文字符,返回值:中文为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
%>
加载全部内容