これらの2つのデリミタの間でテキストを削除しようとしています: '<' & '' '私は電子メールの内容を読んで、その内容を.txtファイルに書いています。私は.txtファイルの行間の空白を含めて、これら2つの区切り文字の間に多くの迷惑メールがあります。どのように私はこれを取り除くのですか?以下は私のスクリプトは私の.txtファイルに書き込まれたデータから読んでいたものである:以下空の行を含む2つの区切り文字の間でテキストを取り除く方法はありますか?
First Name</td>
<td bgcolor='white' style='padding:5px
!important;'>Austin</td>
</tr><tr>
<td bgcolor='#f9f9f9' style='padding:5px !important;'
valign='top' width=170>Last Name</td>
すると、空行を取り除き.txtファイルからの読み込みのための私の現在のコードです:
ここ# Get file contents
fd = open('emailtext.txt','r')
contents = fd.readlines()
fd.close()
new_contents = []
# Get rid of empty lines
for line in contents:
# Strip whitespace, should leave nothing if empty line was just "\n"
if not line.strip():
continue
# We got something, save it
else:
new_contents.append(line)
for element in new_contents:
print element
何を期待されている:
First Name Austin
Last Name Jones
あなたの予期した結果を投稿してもらえますか? –
Farhan.K @同上、しかし、いくつかの入力/期待を追加/ doohickeys(技術用語) – Blacksilver
姓\t \tオースティン\t \t 姓\t \tジョーンズ –