# 1 Email Extractor

 Email Extractor using python

Sometimes you have need of extracting some emails from the large text of thousand lines in web scrapping. 
so in this case this software is proved best for you. If you have any python interpreter like pycharm,visual studio code then You can use this on your computer also.

The code of this programme is given below you can simply copy this and paste in your python file and , enjoy the programme.
***********************************************
import re
str = input("Enter the Text = ")
a = re.findall("\S+@\S+",str)
print("The emails are ")
print(a)

***********************************************
This is small but useful project for beginners

Comments

Popular posts from this blog

#3 Water remainder Programme