I have string like this:
Alex Jatt, ([email protected])
amd I'm trying to extract only email address using regex like so:
p = re.search('\((.*?)\)', c)
but print p command prints ([email protected])
How can I modify this regex to get rid of parenthesis?