XML to CSV Converter
The XML to CSV converter finds the repeating record element in an XML document and writes one CSV row per record, using element paths and attributes as column names. It is built for the record-style XML that feeds product feeds, exports and legacy integrations.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the XML to CSV Converter
- Paste your XML, or load an .xml file.
- Leave the record element blank and the converter picks the most-repeated element; name it explicitly if the guess is wrong.
- Decide whether attributes should become columns.
- Download the CSV.
Example
<people><person><name>Ada</name></person></people>
name Ada
Common use cases
- Turning a product or inventory feed into a spreadsheet for review.
- Extracting a readable table from a legacy system export.
- Getting XML sitemap or RSS data into a form you can sort and filter.
- Preparing XML data for import into a tool that only accepts CSV.
Limitations and things to watch for
- The converter targets record-style XML in which one element repeats. Deeply mixed content — text interleaved with child elements — has no clean tabular form and will produce partial columns.
- Repeated child elements inside a single record are joined with a semicolon in one column rather than being split into rows.
- Namespaces are preserved in column names as they appear in the source.
- Parsing uses the browser DOMParser with no network access, so external entities and DTDs are never fetched.