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 trialMona Jalal
4,302 Pointsregex is not working as expected
why the following doesn't only return first and last names?
print(re.findall(r'''
\b[-\w ]*
\s
[-\w ]+
[^\t\n]
''', names, re.X|re.I))
['Kenneth kenneth@', 'com (', '555-5555 Teacher,', 'Treehouse @', 'kennethlove\nMcFarland,', 'Dave dave@', 'com (', '555-5554 Teacher,', 'Treehouse\nArthur,', 'King king_arthur@', 'uk King,', 'Camelot\nÖsterberg,', 'Sven-Erik governor@', 'se Governor,', 'Norrbotten @', 'Tim tim@', 'com Enchanter,', 'Killer Rabbit Cave\nCarson,', 'Ryan ryan@', 'com (', '555-5543 CEO,', 'Treehouse @', 'ryancarson\nDoctor,', 'The doctor+', 'uk Time Lord,', 'Gallifrey\nExampleson,', 'Example me@', 'com 555-555-5552 Example,', 'Example Co.', 'example\nObama,', 'Barack president.', 'gov 555 555-5551 President,', 'United States of America @', 'potus44\nChalkley,', 'Andrew andrew@', 'com (', '555-5553 Teacher,', 'Treehouse @', 'chalkers\nVader,', 'Darth darth-vader@', 'gov (', '555-4444 Sith Lord,', 'Galactic Empire @', 'darthvader\nFernández de la Vega Sanz,', 'María Teresa mtfvs@', 'gov First Deputy Prime Minister,', 'Spanish Govt.']