关于js正则的一些知识
2023/5/25 JS正则
手机号的正则:
'/^1[3456789]\d{9}$/'
1
密码正则:
//6-12位数字、字母或组合
'/^[a-zA-Z0-9]{6,12}$/'
1
2
2
讲解: (opens new window) http://c.biancheng.net/view/5632.html
手机号的正则:
'/^1[3456789]\d{9}$/'
密码正则:
//6-12位数字、字母或组合
'/^[a-zA-Z0-9]{6,12}$/'
讲解: (opens new window) http://c.biancheng.net/view/5632.html