Skip to content

Instantly share code, notes, and snippets.

@hjzheng
Last active May 30, 2018 08:58
Show Gist options
  • Save hjzheng/b5ac039b2c7370e1a26a to your computer and use it in GitHub Desktop.
Save hjzheng/b5ac039b2c7370e1a26a to your computer and use it in GitHub Desktop.
常用的正则表达式
匹配中文:[\u4e00-\u9fa5]
行首行尾空格:^\s*|\s*$
Email:^\w+@[a-z0-9]+(\.[a-z]+){1,3}$
网址:[a-zA-z]+://[^\s]*
QQ号:[1-9][0-9]{4,9}
邮政编码:[1-9]\d{5}
身份证:[1-9]\d{14}|[1-9]\d{17}|[1-9]\d{16}x
匹配中文标点:[,。?:;‘’!“”—……、【】《》()]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment