vote up 7 vote down star
1

Hi, Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly?

Thanks

Edit ~ I am using XML Notepad on Windows XP.

flag

64% accept rate

9 Answers

vote up 5 vote down check

FirstObject XML editor is a great little free XML editor tool. Open/paste your XML into it and press F8 to indent.

It looks simple, however it contains a custom written XML parser written in C++ that allows it to work with very large XML files easily (unlike some expensive "espionage" related tools I've used).

link|flag
Ha, expensive "espionage"...one for the day :) – Saif Khan Oct 13 '08 at 18:02
This is EXACTLY what I was looking for. – Saif Khan Oct 13 '08 at 18:07
That's a neat tool. Tiny as well. – Kev Oct 14 '08 at 12:40
vote up 1 vote down

If you are a programmer, many XML parsing programming libraries will let you parse XML, then output it - and generating pretty printed, indented output is an output option.

link|flag
vote up 0 vote down

Not directly an answer, but good to know nevertheless: After indenting, please make sure that the parser(s) and application(s) which will subsequently process the formatted XML will not yield different results. White space is often significant in XML and most conforming parsers bubble it up to the application.

link|flag
vote up 1 vote down

If you use Notepad++, I would suggest installing the XML Tools plugin. You can beautify any XML content (indentation and line breaks) or linarize it. Also you can (auto-)validate your file and apply XSL transformation to it.

Download the latest zip and copy the extracted DLL to the plugins directory of your Notepad++ installation. Also, download the External libs and copy them to your %SystemRoot%\system32\ directory.

link|flag
Actually you will need the ext_libs as well, there is an exe that will do the whole thing for you in the source forge repo – Roundcrisis Aug 5 at 10:50
vote up 2 vote down

You can open the XML file in any Visual Studio Express product and the press Ctrl+A, Ctrl+K, Ctrl+F to get it nicely formatted.

Hey, it's free and it's a tool, so it fits the question. :-)

link|flag
vote up 3 vote down

If you're using Windows take a look at Xml Notepad:

http://msdn.microsoft.com/en-us/library/aa905339.aspx

Download from:

http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&displaylang=en

link|flag
Does XML Notepad allow you to paste an XML string and have it formatted (indented)? – Saif Khan Oct 13 '08 at 18:03
@Saif - yes it does, just paste into the panel next to the treeview. – Kev Oct 14 '08 at 10:14
@Saif - I'd go with the FirstObject editor. Way nicer. – Kev Oct 14 '08 at 12:40
vote up 8 vote down

I believe that Notepad++ has this feature.

Notepad++ menu: TextFX -> HTML Tidy -> Tidy: Reindent XML

link|flag
You might need twu.ca/divisions/technology/… – svrist Jan 21 at 9:19
1  
I verified this works without plug-ins. Just download the latest version of Notepad++ and it will support this. – TheLameDuck Jul 31 at 23:46
vote up 1 vote down

xmllint --format

link|flag
vote up 0 vote down

What platform are you on? What text editor are you already using? Most decent text editors either support this out of the box or have add-ons available.

link|flag
@Jon - off topic but I enjoyed your talk on DotNetRocks and I live your book. – David Robbins Oct 11 '08 at 11:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.