位数取字符的长度:http://www.foxtable.com/webhelp/scr/0230.htm
身份证校验:http://www.foxtable.com/webhelp/scr/2624.htm
手机证号码校验:
Dim pattern As String = "^[1][3578][0-9]{9}$"Dim txt = "13553566666"Dim rgx = new System.Text.RegularExpressions.Regex(pattern, System.Text.RegularExpressions.RegexOptions.IgnoreCase)Output.Show( rgx.isMatch(txt))
至于银行帐号,不知道各银行有没有什么统一的生成规则,如果有规则就可以