常用正则表达式分享 验证用户/密码/网址/邮箱等
1 用户名正则 //用户名正则,4到16位(字母,数字,下划线,减号) var uPattern = /^[a-zA-Z0-9_-]{4,16}$/; //输出 true console.log(uPattern.test…
- 共 1 页
- 1
1 用户名正则 //用户名正则,4到16位(字母,数字,下划线,减号) var uPattern = /^[a-zA-Z0-9_-]{4,16}$/; //输出 true console.log(uPattern.test…
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。