C# 和字符解码
我有一个字符串 \u0025A3\u0025A3... 等等 那么如何将其解码为 C# 中的普通视图。
我的意思是序列 \u0025A3\u0025A3 应该在解码模式下看起来。例如,\u0025A3\u0025A3 序列应类似于“::”。
谢谢。
I have a string \u0025A3\u0025A3... e.t.c. So how can I decode that to normal view in C#.
I mean sequence \u0025A3\u0025A3 should looks in decoded mode. For example, the \u0025A3\u0025A3 sequence should looks like "::".
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 split 方法进行解码你的字符串。
You can use split method to decode your string .
字符串中的 Unicode 字符位于 \uFFFF 之上,因此它们将显示为“?”在默认的 Windows 字符集中,或在某些应用程序中为“
The Unicode characters in your string are above \uFFFF so they will display as "?" in the default windows character set, or a "????" in some apps. Try this anyway.