如何格式化xml?

发布于 2024-10-02 11:53:05 字数 421 浏览 2 评论 0原文

你好 我有一个如下所示的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愚人国度 2024-10-09 11:53:05

使用 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!

失与倦" 2024-10-09 11:53:05

尝试使用 DOM 来转换节点。

Try using DOM to transform the nodes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文