Skip to content

Instantly share code, notes, and snippets.

@Yemolai
Last active November 25, 2020 20:32
Show Gist options
  • Save Yemolai/16f0deed796231c14113a18cc9475092 to your computer and use it in GitHub Desktop.
Save Yemolai/16f0deed796231c14113a18cc9475092 to your computer and use it in GitHub Desktop.
Email format regex validation
/^((?:[^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(?:".+"))@(?:(\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
.test('test@abc.co.jp')
// https://regex101.com/r/wGRDRv/3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment