Header Ad

HackerRank Validating and Parsing Email Addresses solution in python

In this Validating and Parsing Email Addresses problem, you have Given N pairs of names and email addresses as input, print each name and email address pair having a valid email address on a new line.

HackerRank Validating and Parsing Email Addresses solution in python


Problem solution in Python 2 programming.

# Enter your code here. Read input from STDIN. Print output to STDOUT
import re
N = input()
for i in xrange(N): 
    s = raw_input()
    a = re.search(r'<[a-zA-Z][\w\.-]*@[a-zA-Z]*\.[a-zA-Z]{1,3}>', s)
    if bool(a):
        print(s)



Problem solution in Python 3 programming.

# Enter your code here. Read input from STDIN. Print output to STDOUT
import re
n = int(input())
for _ in range(n):
    x, y = input().split(' ')
    m = re.match(r'<[A-Za-z](\w|-|\.|_)+@[A-Za-z]+\.[A-Za-z]{1,3}>', y)
    if m:
        print(x,y)


Problem solution in pypy programming.

import email.utils
import re
n = int(raw_input())
for i in range(n):
    p = email.utils.parseaddr(raw_input())
    if re.match(r'[a-z][\w.-]+@[a-z]+\.[a-z]{1,3}$', p[1], re.I):
        print email.utils.formataddr(p)


Problem solution in pypy3 programming.

# Enter your code here. Read input from STDIN. Print output to STDOUT

import re
import email.utils
n = int(input().strip())
temp =[]
a = re.compile(r'<[a-z0-9][\w._-]+@[a-z]+\.[a-z]{1,3}>', re.I)
for _ in range(n):
    temp.append(input().strip())
for i, x in enumerate(temp):
    v =  a.search(x)
    if v:
        print(temp[i])


Post a Comment

2 Comments

  1. hi, can you please describe the code. It would better help understand

    ReplyDelete
    Replies
    1. sure once i will done with all other necessary things then i will do that for all the problems.

      Delete