首页 > 编程 > ASP > 正文

asp检测是否为中文字符函数

2024-05-04 11:08:58
字体:
来源:转载
供稿:网友
检测是否为中文字符
 
 
 
<% 
'****************************** 
'函数: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 
%>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表