以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  只能含有纯数字  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=179878)

--  作者:zhangchi96
--  发布时间:2022/9/15 13:56:00
--  只能含有纯数字
以下是摘录搜到的必须要含有数字和大小写字母的判断语句:

Dim reg = new System.Text.RegularExpressions.Regex("^(?=.*[0-9])(?=.*[a-zA-Z]).{6,16}$")
Dim Password = "abceerere"
If reg.Ismatch(Password) = False Then
    msgbox("不符合")
Else
    msgbox("符合")
End If

以上是必须含有,但含有的个数多少没有限制

如果要要求含有数字0-9,而且只能含有数字,并且一定是6位,请问该如何表达?

--  作者:有点蓝
--  发布时间:2022/9/15 14:02:00
--  
Dim reg = new System.Text.RegularExpressions.Regex("^[0-9]{6}$")
[此贴子已经被作者于2022/9/15 14:43:34编辑过]

--  作者:zhangchi96
--  发布时间:2022/9/15 14:42:00
--  
谢谢蓝老师,少了一个中括号我补上:

Dim reg = new System.Text.RegularExpressions.Regex("^[0-9]{6}$")