Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRonnie Barua
17,665 PointsWhat am I missing? Thanks!
I have this:
def find_emails(str): return re.findall(r'[-\w\d+.]@[-\w\d.]+', str)
import re
# Example:
# >>> find_email("kenneth.love@teamtreehouse.com, @support, ryan@teamtreehouse.com, test+case@example.co.uk")
# ['kenneth@teamtreehouse.com', 'ryan@teamtreehouse.com', 'test@example.co.uk']
def find_emails(str):
return (re.findall(r'[-\w\d+.]@[-\w\d.]+', str))
3 Answers
Thomas Kirk
5,246 PointsHi,
Looks like you're missing the '+' sign after your first group, before the @.
Ronnie Barua
17,665 PointsThanks Thomas! I've tried that before and after you've mentioned it, but all I've got is this:
Bummer! Didn't get the right output. Got [], expected ['kenneth@teamtreehouse.com', 'andrew+gotcha@teamtreehouse.com', 'exa.mple@example.co.uk'].
Ronnie Barua
17,665 PointsThanks again Thomas. I've just passed the challenge. I think it was some kind of white space somewhere in my code.