Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 215 Bytes

正则表达式.md

File metadata and controls

6 lines (5 loc) · 215 Bytes

#正则表达式

  1. 密码,以字母开头,长度在6~20之间,只能包含字符、数字和下划线 ^[a-zA-Z]\w{5,19}$

  2. 手机号码 ^(0|86|17951)?(13[0-9]|15[012356789]|17[0678]|18[0-9]|14[57])[0-9]{8}$