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 trialJason Smith
8,668 PointsBummer: error: missing ), unterminated subpattern at position 2 (line 2, column 2)
hi, i'm pretty sure my phone number is accurate, but i'm not really sure where i messed up on my email pattern. any clarifications are appreciated.
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\.\w?\.?\w?]
(?P<phone>[\d{3}\-\d{3}\-\d{4}])$
''', string, re.M)
1 Answer
William Ennals
9,441 PointsIt seems like both your phone pattern and email patterns are improperly grouped. The "[..]" indicate that the contents can occur in any order, therefore it doesn't specify. For example: A phone number is XXX-XXX-XXXX where the x's are digits. Therefore the pattern should be something like this:
(?P<phone>)\d{3}-\d{3}-\d{4}$
*I can't remember how the parenthesis works for the named grouping
The email should be something like this seperate the characters the come before the "@" symbol, and the characters that come after it like this:
[-\w\d.+]+@[-\w\d.+]+
*This isn't exact, but it should help you fix what you have.
Jason Smith
8,668 PointsJason Smith
8,668 Pointssadly the answer still isn't that clear to me, can you be more specific?
William Ennals
9,441 PointsWilliam Ennals
9,441 PointsYou need to remove the brackets surrounding your answer because it's just saying the pattern needs to contain those characters but, it doesn't specify the order the characters are supposed to be in. Compare your answer with the one's I've specified and try to see what's different. Once, you understand that you should be able to tackle this