Answers for "find email address pytho"

0

find email address pytho

import re
line = "should we use regex more often? let me know at  [email protected]"
match = re.search(r'[\w\.-]+@[\w\.-]+', line)
match.group(0)
'[email protected]'
Posted by: Guest on April-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language