Question: PYTHON Write a function called email_search that returns a regex patterns using re.search or re.findall and REGEX (i.e. . ^ $ * + ? {

PYTHON

Write a function called email_search that returns a regex patterns using re.search or re.findall and REGEX (i.e. . ^ $ * + ? { } [ ] \ | ( ) a-zA-Z, 0-9, etc) to match all contents like email id and domain, except the @, in a typical email address,

In other words, the regex should capture everything left to the @ symbol and right to the @ symbol. For email id (i.e. the part left to the @ symbol), content before and after period should be captured. NOTE the domain (i.e. after the @) should be outputted together.

Look at the examples:

>>> re.search (email_search ( ), chegg.study@chemail.net' ).groups( ) >>> (chegg, study, chemail.net')

Make sure to consider other emails like

chegg.01234@get.imail.net >>> ('chegg', '01234', 'get.imail.net')

CHEgg.stuDY@imail.net >>>('CHEgg', 'stuDY', 'imail.net')

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!