Click to See Complete Forum and Search --> : Batch convert XML files to Ascii files


ppr
03-20-2006, 03:39 PM
Can anyone help me? My goal is to convert a series of XML files that contain data, to a specific format in an ASCII file. The ASCII file essentially needs to contain the data that the XML holds, but it needs to be placed in specific areas in the file.

Is there a base script from any Windows-based language out there that I could use? I was thinking C# or Java???

Can anyone be kind enough to give up a base sample script that I can pick up and manipulate to ultimately do what I need?

Thanks so much in advance!

schizo
03-22-2006, 10:13 AM
I'd probably do an XSL(T) transform. Here's an example of one that transforms XML to XHTML: http://www.w3schools.com/xsl/xsl_transformation.asp

ppr
03-22-2006, 12:03 PM
I appreciate it Schizo! I will give this a go.