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 trialTobiasz Lorenc
3,757 PointsHelp me, i did 50 try's :D
Create a new variable named contacts that is an re.search() where the pattern catches the email address and phone number from string. Name the email pattern email and the phone number pattern phone. The comma and spaces * should not* be part of the groups.
What i do wrong?
import re
string = '''Love, Kenneth, kenneth+challenge@teamtreehouse.com, 555-555-5555, @kennethlove
Chalkley, Andrew, andrew@teamtreehouse.co.uk, 555-555-5556, @chalkers
McFarland, Dave, dave.mcfarland@teamtreehouse.com, 555-555-5557, @davemcfarland
Kesten, Joy, joy@teamtreehouse.com, 555-555-5558, @joykesten'''
contacts = re.search(r'''
^(?P<email>([\w.+]+)?@[\w\s.]+)\t
(?P<phone>[\d]{3}-[\d]{3}-[\d]{4})$
''',string,re.I|re.M)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHere are the corrections needed:
- remove caret (^) starting anchor since pattern doesnβt start at beginning of string
- remove dollar sign ($) EOL anchor since pattern doesnβt end at End-of-line
- use comma space (,\s) between patterns instead of tab (\t)
- remove inner group defined by
(
...)?
as in causes returned groups not to match expected groups - the space (\s) in the email domain name is unnecessary, but will pass task 1
- change
re.I
tore.M
for multi-line interpretation
Post back if you need more help. Good luck!!!