Subject:Converto FILE to XML Author:Tony Lavinio Date:01 Feb 2007 02:58 PM
Your best bet would be to use the whole-line text adapter to
read it in as XML, and then use XSLT to transform that into
your final format, using something like the position() function
to break it apart.
You can use the XML pipeline to connect together the steps,
or directly use the output of the adapter as the URL for the
input to XSLT.
Or you can use the unparsed-text feature of XSLT 2.0 and do
it all inside of the XSLT.