.NET C# 特殊字符

发布于 2024-12-08 03:43:33 字数 246 浏览 0 评论 0原文

我有一个 C# 应用程序,我试图在其中创建一个包含结尾 \0 的字符串。 我没能做到这一点。
我做了:

string msg = "GGGG..8";  
byte []b = System.Text.encoding.GetBytes(msg);

但在 b 中,其中“..”表示的是 46 而不是 00。 我想要 \0\0
而不是 .. 最终目标是让字符串包含消息。

I have a C# application in which I am trying to make a string that will contain near the end \0.
I didn't manage to do that.
I did:

string msg = "GGGG..8";  
byte []b = System.Text.encoding.GetBytes(msg);

but in b where ".." are the representation is 46 and not 00.
I want instead of .. to have \0\0
The final goal was to have the string contain the message.

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

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

发布评论

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

评论(2

芸娘子的小脾气 2024-12-15 03:43:33

创建适当的字符串很容易:

string msg = "GGGG\0\08";

不清楚您在第二行中尝试使用什么编码,但我希望大多数单字节编码将 '\0' 编码为 0 字节。

如果您想获取原本包含句点的消息并将其转换为“\0”字符,这也很简单:

string msg = "GGGG..8";
string replaced = msg.Replace('.', '\0');

Creating an appropriate string is easy:

string msg = "GGGG\0\08";

It's not clear what encoding you were trying to use in the second line, but I'd expect most single-byte encodings to encode that '\0' as a 0 byte.

If you want to take a message which originally includes periods and convert them to '\0' characters, that's easy too:

string msg = "GGGG..8";
string replaced = msg.Replace('.', '\0');
三月梨花 2024-12-15 03:43:33

这应该有效:

string msg = "GGGG..8\0";

如果运气不好,请尝试以下操作:

string msg = "GGGG..8" + '\0';

This should work:

string msg = "GGGG..8\0";

If no luck try this:

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