Estoy tratando de escribir un XSLT que transformará un documento XML que tengo en un archivo CSV. He aquí una muestra del XML:¿Cómo escribo un XSLT para transformar XML a CSV?
<?xml version="1.0" encoding="utf-8"?>
<Import>
<Users>
<User ID="user_1" EmailAddress="[email protected]">
<Contact FirstName="John" LastName="Doe" />
<Address Street1="808 Elm St" City="Anywhere" State="NY" />
</User>
<User ID="user_2" EmailAddress="[email protected]">
<Contact FirstName="Jane" LastName="Noone" />
<Address Street1="123 Some Rd" City="Anywhere" State="NY" />
</User>
</Users>
</Import>
Lo que quiero es un XSLT que a la salida de este modo:
John,Doe,808 Elm St,Anywhere,NY
Jane,Noone,123 Some Rd,Anywhere,NY
creo que tengo el código C# correcta para iniciar la transformación, pero por si acaso yo no, esto es que el código así:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Xsl;
using System.Configuration;
namespace UserTransform
{
class Program
{
static void Main(string[] args)
{
string oldXML = ConfigurationSettings.AppSettings["XMLToBeTransformed"];
string xsltLocation = ConfigurationSettings.AppSettings["XSLTfile"];
string newCSV = ConfigurationSettings.AppSettings["NewCSVLocation"];
XslCompiledTransform transform = new XslCompiledTransform();
transform.Load(xsltLocation);
transform.Transform(oldXML, newCSV);
}
}
}
Gracias. Al menos finalmente está recuperando los valores que quiero de mi archivo XML de muestra (aunque el formateo todavía es una locura). Por alguna razón, estoy obteniendo saltos de línea y extraños espacios extra usando el siguiente XSLT: , , xsl: template> –