Skip to content

Instantly share code, notes, and snippets.

@laozhu
Last active December 14, 2015 05:28
Show Gist options
  • Select an option

  • Save laozhu/5035128 to your computer and use it in GitHub Desktop.

Select an option

Save laozhu/5035128 to your computer and use it in GitHub Desktop.
正则表达式匹配模式

电子邮件

Javascript Version

/^[\w\.\-]+@([\w\-]+\.)+[A-z]{2-6}$/

Python Version

(\b[\w\.\-]+@([\w\-]+\.)+[A-z]{2,6}\b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment