转换与转换到& ETC
我想将 &
转换为 &,将 "
转换为 " 等。 C# 中是否有一个函数可以做到这一点,而无需手动编写所有选项?
I want to convert &
to &, "
to " etc.
Is there a function in c# that could do that without writing all the options manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
编辑:来自 此处表示“要在 Web 应用程序之外对值进行编码或解码,请使用...”
Edit: Note from here that "To encode or decode values outside of a web application, use..."
使用静态方法
将
&
更改为&
,将"
更改为"
。使用做相反的事情。
Use the static method
to change
&
to&
and"
to"
. Useto do the reverse.
您可以使用 System.Net.WebUtility.HtmlDecode(uri);
You can use
System.Net.WebUtility.HtmlDecode(uri);
Server.HtmlDecode。
Server.HtmlDecode.
对于.NET< 4 简单编码器
For .NET < 4 simple encoder