asp检测是否为中文字符函数
程序员文章站
2022-05-31 12:42:32
<% '****************************** '函数:checkchinese(strng) '参数:strng,待验证字符 '描述:检测是否...
<%
'******************************
'函数: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
%>
'******************************
'函数: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
%>
上一篇: ASP MSSQL存储过程的实现小例
下一篇: asp datediff 时间相减
推荐阅读
-
Python 检测字符串中是否包含某子字符串的操作方法 index() 函数
-
PHP检测字符串是否为UTF8编码4种方法
-
preg replace:php过滤超链接并判断链接中文字是否为网址preg_replace_callback函数用法
-
PHP检测字符串是否为UTF8编码的常用方法,utf8编码_PHP教程
-
检测是否为有效邮件(email)地址的小函数
-
完美的2个php检测字符串是否是utf-8编码函数分享
-
整型转字符串 判断是否为指定长度内字符串的php函数
-
PHP完美判断字符串是否为utf-8的函数_PHP教程
-
python通过自定义isnumber函数判断字符串是否为数字的方法
-
判定一个字符串是否为有效时间的函数