0%

常用正则

email

1
const emailPattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/

手机号

1
const telPattern = /^1[34578]\d{9}$/

URL

1
const urlPattern = /^((https?|ftp|file):\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/

微信号

1
const wxPattern = /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/

中文

1
const cnPattern = /[\u4E00-\u9FA5]/;