开发者

C# and character decoding

开发者 https://www.devze.com 2023-02-07 12:34 出处:网络
I have a string \\u0025A3\\u0025A3... e.t.c. So how can I decode 开发者_开发百科that to normal view in C#.

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.


You can use split method to decode your string .


The Unicode characters in your string are above \uFFFF so they will display as "?" in the default windows character set, or a "

0

精彩评论

暂无评论...
验证码 换一张
取 消