C# 中的字符串解码
我有一个可以处理某些文本的应用程序,我需要解码字符串,例如:
示例\x27s 字符串
示例字符串
对于第一个,我尝试使用 Uri.UnescapeDataString(string.Replace("\\x", "%"))
,它可以工作,但并不总是因为如果字符串类似于“某物的 40%”,它会因为“40%”而抛出 Exception
。
对于第二个,我真的不知道如何解码。
我可以用什么东西来解码这两种字符串吗?
I have an app that works with some texts and I need to decode strings like:
example\x27s string
example\u0027s string
For the first one I tried using Uri.UnescapeDataString(string.Replace("\\x", "%"))
which works but not always because if the string is something like "the 40% of somethings's stuff", it throws an Exception
because of the "40%".
For the second one I don't really know how to decode that.
Is there something I can use to decode those two kind of strings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
结果:
请参阅 MSDN。
Try:
Results:
See MSDN.