The following code using Python regex extracts the email id from given string/text
Example
import re
s ='manogna@tutorialspoint.com56'
result =re.findall('[a-zA-Z0-9]\S*@\S*[a-zA-Z]', s)
print resultOutput
This gives the output
['manogna@tutorialspoint.com']