假设我有一个像这样的字符串“这是一个语句”,如果我想用这个“这个**一个语句”搜索和替换字符串
用于搜索 this is a statement、this si a statement、this ia statement 和任何组合的字符串将它们转换为此trim a 语句,即对于this & a statement 之间的任何单词组合,将其替换为trim 以获取另一组将fun替换为notfun。
所以这是程序
import re
file=open('file','r+')
search=re.sub('this \(a_zA_Z0_9)+ a statement','\1trim',file),('this is fun','this is notfun',file)
file.close()
有些事情是不对的,因为文件中没有任何改变。
谢谢大家。