gpt4 book ai didi

c# - X.ToCharArray().Length 等于 GetBytes(X).Length

转载 作者:太空宇宙 更新时间:2023-11-03 19:30:16 25 4
gpt4 key购买 nike

string s = "test";
int charCount = s.ToCharArray().Length;
int byteCount = System.Text.Encoding.Default.GetBytes(s).Length;

什么时候可以 (charCount != byteCount) 发生?我相信 Unicode 字符的情况,但不是一般情况。

.NET 支持 Unicode 字符,但这是 .NET 的默认 (System.Text.Encoding.Default) 编码吗? “System.Text.Encoding.Default”显示“System.Text.SBCSCodePageEncoding”为单字节编码。

最佳答案

默认编码为 UTF8,每个字符可以包含 1-4 个字节的空格。

当字符串 s 中的任何字符使用超过 1 个字节时,charCount 和 byteCount 将不相等。

要强制使用 4 个字节,您可以使用 Unicode 编码进行检查,然后 byteCount = 8。

int byteCount = System.Text.Encoding.Unicode.GetBytes(s).Length;

关于c# - X.ToCharArray().Length 等于 GetBytes(X).Length,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5495523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com