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 trialGeorge Clement
2,816 Pointsugh I can't figure out what I am doing wrong... I keep getting a space in the front of my result
I can't figure out what I'm doing to include a space at the start of my result
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?\w?\w?\w?.?\w+@\w*.\w*.\w*), (?P<phone>\d\d\d-\d\d\d-\d\d\d\d+)", string )
twitters = re.search(r"^\+@ | (@\w*)", string, re.MULTILINE)
1 Answer
Daniel Medina
13,863 PointsIt seems you're starting your regex from the beginning of the string with ^ and giving it an extra space with +
Here is a working version for getting the Twitter accounts:
twitters = re.search(r'(@[\w]+)$', string, re.MULTILINE)
This will select all characters after @ until the end of the string ($).
Also, if you want a different version of contacts that gets the emails, try this regex:
contacts = re.search(r'(?P<email>[\w+]+@[\w+.]+), (?P<phone>\d{3}-\d{3}-\d{4})', string)
I understand how frustrating this section can get especially with how specific the characters and pattern matching can get.
Good luck!