メールからテキストのチャンクを分離する次のコードがあります。
for part in mail.walk():
if part.get_content_type() == 'text/plain':
content = part.get_payload()
message = re.compile(r'\%(.+?)\%', re.DOTALL).findall(content)
print message
これはテキストを完全に見つけますが、それが の場合prints
、次のような結果が得られます。
['Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras et erat libe=\r\
nro. Ut lacinia ante euismod nibh feugiat pellentesque. Suspendisse vestibul=\r\
...
=\r\
各行の末尾にある を削除するにはどうすればよいですか? ありがとうございました!