Last active
May 30, 2018 08:58
-
-
Save hjzheng/b5ac039b2c7370e1a26a to your computer and use it in GitHub Desktop.
常用的正则表达式
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
匹配中文:[\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