使用十六进制查看器确定文本文件中结构化部分的定界符

发布于 2024-09-25 04:15:15 字数 304 浏览 0 评论 0原文

我有一个包含结构化数据的文本文件。每个文本块之后都会显示“END”并继续到下一个块。看着十六进制查看器,我看到

0A:45:4E:44:0A:20:20:20:20:20:20:20:20:20

它转化为

?END?         

注意 9 个空格。

如何在代码中将其写为分隔符?

"END\n\n\n \n \n \n \n \n \n"

这似乎不起作用。我缺少什么?

I have a text file with structured data. After each text block it says "END" and continues onto the next block. Looking at a hex viewer I see

0A:45:4E:44:0A:20:20:20:20:20:20:20:20:20

which translates into

?END?         

Notice the 9 spaces.

How do I write this as a delimeter in my code?

"END\n\n\n \n \n \n \n \n \n"

This doesn't seem to work. What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无法回应 2024-10-02 04:15:15

然而,

"\nEND\n         "

您很可能忘记提及您正在使用哪种语言。 up 是从哪里得到这些额外的 \n 的?

Most likely,

"\nEND\n         "

however you forgot to mention which language you're using. Where did up get all those extra \ns from?

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