OK. A current project at work has gone awry due to a vendor not being capable of doing what needs done when creating an XML file. See below quick XML out line (crude outline). This XML has segments A, B and C that possibly can contain pertinent information. However when getting to D1.... D4 they really need to each be in their own XML file with all the preceding segments. Anyone know of a program that can help do that? Is there really a way to do that programmatically? That is, based on the below. Input A-XML and Output A1-XML. A2_XML, A3-XML and A4-XML.
<A>
.....<B>
..........<C>
..............<D1>
..............<D2>
..............<D3>
..............<D4>
etc.
<A>
.....<B>
..........<C>
..............<D1>
..............<D2>
..............<D3>
..............<D4>
etc.
Comment