fork download
  1. import re
  2.  
  3. x = 'From mohamed.dahab@gmail.com Fri Jan 5 09:14:16 2016'
  4. y = re.findall('@(.*)\s', x)
  5. print (y)
  6.  
Success #stdin #stdout 0.15s 15552KB
stdin
Standard input is empty
stdout
['gmail.com Fri Jan 5 09:14:16']