在test.txt中:
rt : objective
tr350rt : objective
rtrt : objective
@username : objective
@user_1236 : objective
@254test!! : objective
@test : objective
#15 : objective
我的代码:
import re
file3 = 'C://Users/Desktop/test.txt'
rfile3 = open(file3).read()
for altext in rfile3.split("\n"):
saltext = altext.split("\t")
for saltword in saltext:
ssaltword = saltword.split(" ")
if re.search(r'^rt$', ssaltword[0]):
print ssaltword[0], ssaltword[2]
testreplace = open(file3, 'w').write(rfile3.replace(ssaltword[0], ""))
if re.search(r'^@\w', ssaltword[0]):
print ssaltword[0], ssaltword[2]
testreplace = open(file3, 'w').write(rfile3.replace(ssaltword[0], ""))
我得到了:
: objective
tr350 : objective
: objective
@username : objective
@user_1236 : objective
@254test!! : objective
: objective
#15 : objective
我试图只替换“rt”和所有@ with space
但是从我的代码中,所有“rt”都被替换,只有一个@被替换。
我想得到:
: objective
tr350rt : objective
rtrt : objective
: objective
: objective
: objective
: objective
#15 : objective
有什么建议吗?
答案 0 :(得分:2)
我认为正则表达式在这里有点过分:
with open("test.txt") as in_fp, open("test2.txt", "w") as out_fp:
for line in in_fp:
ls = line.split()
if ls and (ls[0].startswith("@") or ls[0] == "rt"):
line = line.replace(ls[0], "", 1)
out_fp.write(line)
生成
localhost-2:coding $ cat test2.txt
: objective
tr350rt : objective
rtrt : objective
: objective
: objective
: objective
: objective
#15 : objective
请注意,我也改变了它,不要覆盖原文。
编辑:如果你真的想要原位覆盖原文,那么我首先要将整个内容读入内存:
with open("test.txt") as fp:
lines = fp.readlines()
with open("test.txt", "w") as out_fp:
for line in lines:
ls = line.split()
if ls and (ls[0].startswith("@") or ls[0] == "rt"):
line = line.replace(ls[0], "", 1)
out_fp.write(line)
答案 1 :(得分:1)
import re
with open("test.txt") as infile:
text = infile.read()
newtext = re.sub(r"(?m)^(?:rt\b|@\w+)(?=\s*:)", " ", text)
<强>解释强>
(?m) # Turn on multiline mode
^ # Match start of line
(?: # Either match...
rt\b # rt (as a complete word
| # or
@\w+ # @ followed by an alphanumeric "word"
) # End of alternation
(?=\s*:) # Assert that a colon follows (after optional whitespace)
答案 2 :(得分:1)
试试这个,
import os
mydict = {"@":'',"rt":''}
filepath = 'C://Users/Desktop/test.txt'
s = open(filepath).read()
for k, v in mydict.iteritems():
s = s.replace(k, v)
f = open(filepath, 'w')
f.write(s)
f.close()
答案 3 :(得分:1)
这里甚至不需要使用正则表达式:
with open("test.txt") as file:
lines = file.readlines()
for line in lines:
if (line.startswith("@") and ":" in line) or line.startswith("rt :"):
line = " :" + line.split(":", 1)[1]