如何格式化xml?
你好 我有一个如下所示的 xml,
<Root><First><id></id></First><Second><a>a</a><b>b</b></Second></Root>
我必须将其格式化
<Root><First><Second><a>a</a><b>b</b></Second><id></id></First></Root>
为任何人都可以告诉我如何在 c# 2.0 中执行此操作。 ?
Hi
I have an xml like below
<Root><First><id></id></First><Second><a>a</a><b>b</b></Second></Root>
I have to format it into
<Root><First><Second><a>a</a><b>b</b></Second><id></id></First></Root>
can any one tell me how to do this in c# 2.0. ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 XML 转换非常简单,我认为如果你这样做会起作用:
http ://www.logiclabz.com/c/net-c-function-to-convert-xml-document-into-html-string-using-xslt.aspx
如果不知道这一点,我想你有一个很好的机会来学习它与你的问题 - 它非常强大!
It's pretty simple using XML transformation, I think if you do something like this would work:
http://www.logiclabz.com/c/net-c-function-to-convert-xml-document-into-html-string-using-xslt.aspx
If don't know this, I think you have a great opportunity to learn it with you problem - it's very powerful!
尝试使用 DOM 来转换节点。
Try using DOM to transform the nodes.