将XML标签转换为CSV

时间:2019-09-24 07:29:45

标签: xml csv xmltocsv

我想将一些XML标记转换为逗号分隔值(CSV)

    <variable name="Fault_Reset">
          <type>
            <BOOL />
          </type>
     </variable>
     <variable name="Cycle_On">
          <type>
            <BOOL />
          </type>
     </variable>

我希望输出看起来像这样: 变量名称类型

例如

故障重置,BOOL

Cycle_On,BOOL

请帮帮我。

1 个答案:

答案 0 :(得分:0)

就像使用字典来处理这种类型的代码。我认为BOOL应该是内部文本而不是标签名称。试试下面的代码,该代码适用于发布的XML

using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication132
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            Dictionary<string, string> dict = doc.Descendants("variable")
                .GroupBy(x => (string)x.Attribute("name"), y => (string)y.Element("type").Elements().FirstOrDefault().Name.LocalName)
                .ToDictionary(x => x.Key, y => y.FirstOrDefault());

        }
    }


}