按给定位置替换文件中的字符串

发布于 2024-08-07 20:06:23 字数 399 浏览 7 评论 0原文

我有一个以“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掩于岁月 2024-08-14 20:06:23

你可以使用 mmap 来实现

import os,mmap
f=os.open("afile",os.O_RDWR)
m=mmap.mmap(f,0)
m[4:9]="01234"
os.close(f)

You can use mmap for that

import os,mmap
f=os.open("afile",os.O_RDWR)
m=mmap.mmap(f,0)
m[4:9]="01234"
os.close(f)
演出会有结束 2024-08-14 20:06:23

您可以 mmap() 您的文件,然后使用切片表示法来更新文件中的特定字节范围。 此处的示例应该有所帮助。

You could mmap() your file and then use slice notation to update specific byte ranges in the file. The example here should help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文