I want to write a regular expression to filter out all junk out of an email that is being pulled in through imaplib and email modules in my Python script below. I'm thinking a regex is best but feel free to suggest better solutions. Any idea why the email text has a equals in the word be=tter below? The original email has it as better.
Python snippet:
emailMessage = email.message_from_string
print emailMessage.get_payload():
Print Text:
>=20
> >>>>
> >>>> Hope this makes it through you spam filter but couldn't think of a be=
tter subject.
> >>>>
=20. It is part of the encoding, called "quoted-printable". You want to decode it. – Karl Knechtel Nov 15 '12 at 0:33