有关“验证是否包含非法字段”的问题
谁知道这段代码具体怎么用啊
Function CheckName(str)
If str="" Then Exit Function
Dim re
Set re=New RegExp
re.IgnoreCase=true
re.Global=true
re.pattern="[~!@#$%^&*()+|<>\\ ]"
CheckName=re.test(str)
Set re=nothing
End Function
是检查是否包含非法字符的
在线等