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 trial

Python Regular Expressions in Python Introduction to Regular Expressions Review: Regular Expressions in Python

Noel Terho Karlsson
Noel Terho Karlsson
2,992 Points

What is? the answer to this question

I need help

Noel Terho Karlsson
Noel Terho Karlsson
2,992 Points

How would I get the contents of the group named email from my match object?

match_object.__

1 Answer

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Rohald van Merode
Treehouse Staff

Hi Noel Terho Karlsson 👋

You can use the group method to get the group named email off of the object like so:

match_object.group('email')

If you wish to revisit this method, Kenneth explains it around the 3:30 min mark of the video

Hope this helps! 🙂