ASP判断汉字
时间:2012-06-01 10:44:27浏览:5060
汉字的UNICODE编码范围是4e00-9fa5,所以使用正则表达试就可以判断一个汉字是不是汉字了。
Set RegExpObj=new RegExp
RegExpObj.Pattern="^[u4e00-u9fa5]+$"
ReGCheck=RegExpObj.test(whichChar)
Set RegExpObj=nothing
if ReGCheck then
Response.write whichChar & "是汉字"
else
Resposne.write whichChar & "不是汉字"
end if
上一篇:丢大了,右边2个轮子悬空
下一篇:Win7 问题步骤记录器真的很强大
Set RegExpObj=new RegExp
RegExpObj.Pattern="^[u4e00-u9fa5]+$"
ReGCheck=RegExpObj.test(whichChar)
Set RegExpObj=nothing
if ReGCheck then
Response.write whichChar & "是汉字"
else
Resposne.write whichChar & "不是汉字"
end if
上一篇:丢大了,右边2个轮子悬空
下一篇:Win7 问题步骤记录器真的很强大
- Linux文章
- PHP文章
- 随机文章
- Linux中的find(-atime...
- mysql的expire_logs_...
- PHP 扩展 libsodium s...
- Linux下利用find和cp实现筛...
- 使用mysqldump命令导出备份m...
- Linux系统如何设置开机自动运行脚...
- Linux上实现秒级执行的定时任务
- shell echo -e 颜色输出
- Linux下通过grep查找指定的进...
- 解决执行脚本报syntax erro...
发表评论
昵称: 验证码: