Skip to content

Instantly share code, notes, and snippets.

@BerkhanBerkdemir
Last active April 26, 2018 00:07
Show Gist options
  • Save BerkhanBerkdemir/cda246311a70abd026b0aa18d311e054 to your computer and use it in GitHub Desktop.
Save BerkhanBerkdemir/cda246311a70abd026b0aa18d311e054 to your computer and use it in GitHub Desktop.
Regular Expression - Copy paste stuffs

My RegEx cheatsheet

About

This gist includes what I wrote for my self.

College email validation

/\A[a-z_]{3,}\@(student\.)?college\.edu\z/

WARNING:

It doesn't work very well with [email protected] or [email protected]

Normal email validation

/\A[^@\s]+@[^@\s]+\z/

License

LICENSE

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment