正则表达式
https://deerchao.cn/tutorials/regex/regex.htm#getstarted
验证用户密码:"^[a-zA-Z]\w{5,17}$"正确格式为:以字母开头,长度在6~18之间,只能包含字符、数字和下划线。
\w 匹配:匹配字母或数字或下划线或汉字
https://deerchao.cn/tutorials/regex/regex.htm#getstarted
验证用户密码:"^[a-zA-Z]\w{5,17}$"正确格式为:以字母开头,长度在6~18之间,只能包含字符、数字和下划线。
\w 匹配:匹配字母或数字或下划线或汉字