How To Match Email In Regex In Ruby

[Solved] How To Match Email In Regex In Ruby | Ruby - Code Explorer | yomemimo.com
Question : how to match email in regex in ruby

Answered by : yawning-yacare-dt0otk4o9obu

VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i

Source : https://stackoverflow.com/questions/22993545/ruby-email-validation-with-regex | Last Update : Sun, 25 Oct 20

Answers related to how to match email in regex in ruby

Code Explorer Popular Question For Ruby