常用正则表达式

1、手机号

/^((1[3,5,8][0-9])|(14[5,7])|(17[0,6,7,8])|(19[7]))d{8}$/

2、邮箱

/^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(.[a-zA-Z0-9_-]+)+$/

3、微信

/^[a-zA-Zd_]{5,}$/

原文地址:https://www.cnblogs.com/ZLHF/p/6808060.html