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

来源:asp之家 时间:2009-10-04 20:39:00 

asp正则表达式检测字符串是否是数字及字母。

<% 
'函数:CheckString(strng) 
'参数:strng,待验证字符串 
'描述:检测字符串是否为纯字母和数字组合 
'示例:<%=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,待验证字符 
'描述:检测是否为中文字符,返回值:中文为true,否则false 
'示例:<%=CheckChinese(strng)%> 
Function CheckChinese(strng) 
    CheckChinese = true 
    Dim regEx, Match 
    Set regEx = New RegExp 
    regEx.Pattern = "\wsws\#ws\&ws\?ws\@ws\%ws\*ws\/ws\.ws\,ws\;ws\'ws\:ws\-ws\_ws\+ws\^ws\""ws\=ws\<ws\>ws\ " 
    regEx.IgnoreCase = True 
    Set Match = regEx.Execute(strng) 
    if match.count then CheckChinese= false 
End Function 
%>


 

标签:正则表达式,数字,字母
0
投稿

猜你喜欢

  • 举例详解JavaScript中Promise的使用

    2024-06-05 09:58:07
  • 10款最好的Python开发编辑器

    2022-02-14 07:35:28
  • IA学习笔记02:组织体系

    2009-06-12 12:22:00
  • “)”引起PNG透明滤镜失效

    2008-08-11 13:10:00
  • SQL Server 2005日志文件损坏的处理方法

    2008-12-02 14:36:00
  • MySQL EXPLAIN执行计划解析

    2024-01-26 14:35:28
  • Vue官方推荐AJAX组件axios.js使用方法详解与API

    2024-05-05 09:08:06
  • Python基于locals返回作用域字典

    2021-05-17 22:02:43
  • MySQL的常用命令集锦

    2024-01-16 00:40:44
  • Python学习之str重要函数

    2022-12-29 05:46:37
  • GoLang并发编程中条件变量sync.Cond的使用

    2024-04-25 15:28:40
  • Python Flask + Redis 程序练习

    2022-07-26 13:49:55
  • MySQL GTID主备不一致的修复方案

    2024-01-15 21:26:16
  • python实现根据文件关键字进行切分为多个文件的示例

    2021-03-04 16:35:19
  • Python+OpenCV之图像轮廓详解

    2023-08-10 18:59:42
  • 解决Linux下Tomcat向MySQL插入数据中文乱码问题

    2024-01-29 13:06:36
  • mysql多表join时候update更新数据的方法

    2024-01-15 12:56:37
  • Python操作串口的方法

    2021-11-24 07:09:10
  • Python中optparser库用法实例详解

    2023-08-14 01:32:11
  • 详解如何使用Python实现删除重复文件

    2022-08-14 04:33:54
  • asp之家 网络编程 m.aspxhome.com