Two phase transformation using XSLT 2.0
问题 I am trying to take a CSV file as input and transform it into a XML. I'm new to XSLT and I've found a way to convert a CSV into XML (using an example from Andrew Welch) like so: Input CSV file: car manufacturer,model,color,price,inventory subaru,outback,blue,23195,54 subaru,forester,silver,20495,23 And my output XML would be: <?xml version="1.0" encoding="UTF-8"?> <rows> <row> <column name="car manufacturer">subaru</column> <column name="model">outback</column> <column name="color">blue<