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 trialSathya Musanipalli
2,265 PointsReturn a list of all the email addresses in the string
What is wrong with my code? I don’t think it’s is a syntax error, so is the error in my set?
import re
def find_emails(str):
return(re.findall(r'[-\w\d+.]@[-\w\d.]', str))
# 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']
1 Answer
Steven Parker
231,248 PointsThe error message gives you a clue:
Bummer: Didn't get the right output. Got ['h@t', 'a@t', 'e@e'], expected ['kenneth@teamtreehouse.com', 'andrew+gotcha@teamtreehouse.com', 'exa.mple@example.co.uk'].
It shows you that what it got for each entry was a single character on either side of "@" symbol, which is how the expression is currently coded. But if you add the "+" symbol to your character classes they will capture one or more of that type of character, which will produce the correct result.