字符串操作 - jython 中的 re.sub
假设我有一个像这样的字符串“这是一个声明” 如果我想搜索字符串并将其替换为“this ** a statements”
字符串,以搜索 this is a statements 、 this si a statements 、 this ia statements 以及任何组合,将它们转换为此 trim一份声明 即对于 this 和; 之间的任何单词组合语句将其替换为 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()
有些不对劲,因为文件中没有任何变化。
谢谢大家。
Let say i have a string like this 'this is a statement'
and if i want to search and replace string with this 'this ** a statement'
string to search for this is a statement , this si a statement , this i a statement and any combination convert them into this trim a statement
i.e for any word combination between this & a statement replace it with trim
for another set replace fun to notfun .
so this is the program
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()
something is not right as nothing is getting changed in the file.
thanks everyone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
re.sub
不适用于文件,它适用于字符串。您需要将文件的内容读入字符串,然后使用 re.sub 更改字符串,然后将修改后的字符串写回到文件中。一个简单的例子:
re.sub
doesn't work on files, it works on strings. You need to read the contents of the file into a string, then use re.sub to change the string, then write the modified string back to the file.A simple example: