按给定位置替换文件中的字符串
我有一个以“ab+”模式打开的文件。
我需要做的是将文件中的一些字节替换为另一个字符串的字节,例如:
FILE:
thisissomethingasperfectlygood.
string:
01234
因此,例如,我寻找位置 (4, 0) 并且我想在“issom 的位置写 01234 ”在文件中。最后一次出现是:
this01234ethingasperfectlygood
。
网上有一些解决方案,但所有解决方案(至少我能找到的)都是基于“首先在文件中找到一个字符串,然后用另一个字符串替换它”。因为我的案例是基于寻求,所以我对解决方案感到困惑。
I have a file opened in 'ab+' mode.
What I need to do is replacing some bytes in the file with another string's bytes such that:
FILE:
thisissomethingasperfectlygood.
string:
01234
So, for example, I seek for the position (4, 0) and I want to write 01234 in the place of "issom" in the file. Last appearance would be:
this01234ethingasperfectlygood
.
There are some solutions on the net, but all of them (at least what I could find) are based on "first find a string in the file and then replace it with another one". Because my case is based on seeking, so I am confused about the solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用 mmap 来实现
You can use mmap for that
您可以 mmap() 您的文件,然后使用切片表示法来更新文件中的特定字节范围。 此处的示例应该有所帮助。
You could mmap() your file and then use slice notation to update specific byte ranges in the file. The example here should help.