2013-05-06 42 views
22

下面的代碼返回到一個很好的可讀輸出。刪除包含_之前的字符python 2.7

def add_line_remove_special(ta_from,endstatus,*args,**kwargs): 
    try: 
     ta_to = ta_from.copyta(status=endstatus) 
     infile = botslib.opendata(ta_from.filename,'r') 
     tofile = botslib.opendata(str(ta_to.idta),'wb') 
     start = infile.readline() 
     import textwrap 
     lines= "\r\n".join(textwrap.wrap(start, 640)) 
     tofile.write(lines) 
     infile.close() 
     tofile.close() 

這是輸出,現在我想刪除所有的字符,直到幷包括_

Ichg_UNBUNOA3         14    2090100000015      14    1304221445000001 
MSG_BGM380           610809        9 NA 
MSG_DTM13720130422       102 
Grp1_RFFON test EDI 
Grp2_NADBY 2090100000015       9 
Grp2_NADIV 2090100000015       9 
Grp2_NADDP 2090100000015       9 
Grp7_CUX2 EUR4 
Grp8_PAT22                        5 3 D 30 
Grp25_LIN1  02090100000022      EN 
Grp25_QTY47    5 
Grp25_QTY12    5 
Grp26_MOA203    15.00 
Grp28_PRIINV  3000.00   1000PCE 
Grp33_TAX7 VAT                     21.00        S 
Grp25_LIN2  02090100000039      EN 
Grp25_QTY47    10 
Grp25_QTY12    10 
Grp26_MOA203   350.00 
Grp28_PRIINV  35000.00   1000PCE 
Grp33_TAX7 VAT                     21.00        S 

我怎樣才能做到這一點?

回答

47

要獲得一個下劃線後線的所有文字,分裂第一_性格和拍攝效果的最後一個元素:

line.split('_', 1)[-1] 

這也將爲那些有行工作線上的下劃線字符。

演示:

>>> 'Grp25_QTY47    5'.split('_', 1)[-1] 
'QTY47    5' 
>>> 'No underscore'.split('_', 1)[-1] 
'No underscore' 

翻譯給你的代碼:

import textwrap 

ta_to = ta_from.copyta(status=endstatus) 
with botslib.opendata(ta_from.filename,'r') as infile: 
    with botslib.opendata(str(ta_to.idta),'wb') as tofile: 
     for line in textwrap.wrap(next(infile), 640): 
      line = line.split('_', 1)[-1] 
      tofile.write(line + '\r\n') 
+0

我是否需要在行添加 線路: line.split( '_',1) - 1 ] lines = ....和tofile.write ... – user2343368 2013-05-06 19:23:06

+0

是的,您需要爲每一行執行此操作。 – 2013-05-06 19:26:26

+0

'的infile = botslib.opendata(ta_from.filename, 'R') TOFILE = botslib.opendata(STR(ta_to.idta), 'WB') 開始= infile.readline() 進口textwrap 線=「\ ('_',1)[ - 1] tofile.write(行) infile.close() tofile.close()' 僅導致文件的最後一個字符= S – user2343368 2013-05-06 19:31:10