有没有人可以帮我解决如何删除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>
谢谢你。
答案 0 :(得分:9)
您可以使用XLinq:
XElement.Parse(str).ToString(SaveOptions.DisableFormatting)