如何在C#中删除XML文档中的空格

时间:2011-08-03 01:08:03

标签: xml c#-4.0

有没有人可以帮我解决如何删除XML标签之间的所有空白区域的问题,如下所示:

<?xml version="1.0"?>
<note>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
</note>

要:

<?xml version="1.0"?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>

谢谢你。

1 个答案:

答案 0 :(得分:9)

您可以使用XLinq:

XElement.Parse(str).ToString(SaveOptions.DisableFormatting)