Validating Email Addresses With a Filter

  • + 1 comment

    def fun(s): return bool(re.match(r"^[a-zA-Z0-9_-]+@[a-zA-Z0-9]+.[a-zA-Z]{1,3}$", s))

    • + 0 comments

      I think ''\'' before '.' is missing. The corrected answer is the following:

      def fun(s): return bool(re.match(r"^[a-zA-Z0-9_-]+@[a-zA-Z0-9]+.[a-zA-Z]{1,3}$", s))