|
楼主 |
发表于 2007-4-18 09:53:57
|
显示全部楼层
写了这么一个小程序,能工作了,但请大家:
1.帮我找找写得不好的地方;
2.如果我不想用临时文件,而是打开一个文件,修改后,写回原文件,该怎么实现?
谢谢
[php]
import re, os, sys
input = file("emotions.ini", "r")
output = file("tmp.ini","w")
p = re.compile(r'/.*')
for s in input.xreadlines():
output.write(p.sub('',s))
output.close( )
input.close( )
os.remove("emotions.ini")
os.rename("tmp.ini", "emotions.ini")
[/php] |
|