gpt4 book ai didi

c# - 如何在 C# 中将 ' 转换为撇号?

转载 作者:太空狗 更新时间:2023-10-29 18:15:10 25 4
gpt4 key购买 nike

我尝试了 ASCII、Latin1、Windows-1252、UTF-8 和 Unicode 的几种组合,以在 C# 中将 ' 转换为撇号,但无济于事。

byte[] uBytes = Encoding.Unicode.GetBytes(questionString);
byte[] utf8Bytes = Encoding.Convert(Encoding.Unicode, Encoding.UTF8, uBytes);
string converted = Encoding.UTF8.GetString(utf8Bytes);

我正在使用这个转换图表来发现每个代码应该是什么:http://www.i18nqa.com/debug/utf8-debug.html

最佳答案

Try以下内容:

var bytes = Encoding.Default.GetBytes("’");
var text = Encoding.UTF8.GetString(bytes);
Console.WriteLine(text);

关于c# - 如何在 C# 中将 ' 转换为撇号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10888040/

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