Guest User

Untitled

a guest
Apr 19th, 2018
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. >> E = /\A([-a-z0-9]+[\w\.\-\+]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
  2. => /\A([-a-z0-9]+[\w\.\-\+]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
  3. >> email = "support@blah.com"
  4. => "support@blah.com"
  5. >> email =~ E
  6. => 0
  7. >>
Add Comment
Please, Sign In to add comment