2012-06-28 211 views

回答

0

你試過了什麼?我沒有真正遵循你的格式。

f=open(filepath, 'r') 
hold = f.read() 
#hold now = 'A 0001 1212 00 @@ word' 
holdout = hold.replace('@@ word','') 
#holdout now = 'A 0001 1212 00 ' 
#the replace call uses this format 
#string.replace('what it is looking for', 'what it is going to be') 

這是你想要的嗎?這個文件只有一行嗎?

+0

只有文本文件包含「A 0001 1212 00 @@ word」ok當我試圖獲取「word」時,那麼0001 1212文本應該顯示在輸出文件 – testing

+0

中您可以將數據作爲字符串導入,然後執行字符串 - 'word' 。這是你在你的輸出中尋找什麼?你可以做一個格式化和所需的後格式化例子之前? (你應該編輯你的問題)。 – deadstump

+0

@testing查看我的編輯。這是你想要的嗎? – deadstump

相關問題