LINQ 到 XML 查询

发布于 2024-09-01 15:18:34 字数 778 浏览 4 评论 0原文

这里我有非常相似的xml结构,但现在我有这个:

<Fields>
    <Company>My Company</Company>
    <Address2>Villa at beach</Address2>
    <Email2>[email protected]</Email2>
    <Mobile>333-888</Mobile>
    <ContactMethod>Facebook</ContactMethod>
    ...etc...
</Fields>

现在我需要与给定链接相同的输出: 公司:我的公司
地址2:海滩别墅
Email2: [email protected]

它的查询是什么?

谢谢,

Here I had very similar xml structure, but now I have this:

<Fields>
    <Company>My Company</Company>
    <Address2>Villa at beach</Address2>
    <Email2>[email protected]</Email2>
    <Mobile>333-888</Mobile>
    <ContactMethod>Facebook</ContactMethod>
    ...etc...
</Fields>

And now I need the same output as on the given link:
Company: My Company
Address2: Villa at beach
Email2: [email protected]

What would be the query for it?

Thanks,
Ile

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

第几種人 2024-09-08 15:18:34

假设您希望将结果作为字典,您可以这样做:

        string xml =
@"<Fields>  
  <Company>My Company</Company>  
  <Address2>Villa at beach</Address2>  
  <Email2>[email protected]</Email2>  
  <Mobile>333-888</Mobile>  
  <ContactMethod>Facebook</ContactMethod>  
</Fields>";

        XDocument doc = XDocument.Parse(xml);
        XElement fields = doc.Root;

        Dictionary<string, string> result = fields.Elements().ToDictionary(e => e.Name.LocalName, e => e.Value);

        foreach (var i in result)
        {
            Console.WriteLine(i.Key + ": " + i.Value);
        }

Assuming you want the results as a dictionary you could do this:

        string xml =
@"<Fields>  
  <Company>My Company</Company>  
  <Address2>Villa at beach</Address2>  
  <Email2>[email protected]</Email2>  
  <Mobile>333-888</Mobile>  
  <ContactMethod>Facebook</ContactMethod>  
</Fields>";

        XDocument doc = XDocument.Parse(xml);
        XElement fields = doc.Root;

        Dictionary<string, string> result = fields.Elements().ToDictionary(e => e.Name.LocalName, e => e.Value);

        foreach (var i in result)
        {
            Console.WriteLine(i.Key + ": " + i.Value);
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文