将 Ruby 的 gsub 与包含“\0”的字符串一起使用

发布于 2024-09-11 11:55:53 字数 281 浏览 4 评论 0原文

我在正确使用 gsub 时遇到问题:

给出这段代码:

"replace me".gsub(/replace me/, "this \\0 is a test")

结果是:

 "this replace me is a test" 

但我期望的是:

"this \0 is a test"

如何使用 gsub 来获得我想要的结果?

I'm having trouble using gsub correctly:

Given this code:

"replace me".gsub(/replace me/, "this \\0 is a test")

The result is:

 "this replace me is a test" 

But what I am expecting is:

"this \0 is a test"

How do I use gsub to get the result I want?

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

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

发布评论

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

评论(1

失去的东西太少 2024-09-18 11:55:53

使用另一个反斜杠将其转义,以便 gsub 知道您想要 "\\0"

"replace me".gsub(/replace me/, "this \\\\0 is a test")

(编辑)如果"\0"指的是字节0x00,请执行以下操作:

"replace me".gsub(/replace me/, "this \0 is a test")

Escape it with another backslash so that gsub will know you want "\\0".

"replace me".gsub(/replace me/, "this \\\\0 is a test")

(Edit) if by "\0" you meant the byte 0x00, do this:

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