i have a regular expression that searches a string and plucks out email addresses however it doesn't work for email addresses w/a subdomain e.g. [EMAIL PROTECTED]
emails = re.findall('([EMAIL PROTECTED])', senderlist) <-- my code
is there any way to modify that to include email addresses that also
have subdomains?
--
http://mail.python.org/mailman/listinfo/python-list
