小编典典

如何在C#中将字符串解码为XML字符串

c#

我有一个字符串(来自CDATA元素),其中包含XML的描述。我需要将此字符串解码为一个新字符串,以便使用C#正确显示字符

现有字符串:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><myreport xmlns="http://test.com/rules/client"><admin><ordernumber>123</ordernumber><state>NY</state></report></myreport>

想要的字符串:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<myreport xmlns="http://test.com/rules/client">
<admin><ordernumber>123</ordernumber><state>NY</state></report></myreport>

阅读 194

收藏
2020-05-19

共1个答案

小编典典

  1. HttpUtility.HtmlDecodeSystem.Web
  2. WebUtility.HtmlDecodeSystem.Net
2020-05-19