vote up 1 vote down star

Is it possible to write a REGEX (search replace) that when run on an XML string will output that XML string indented nicely?

If so whats the REGEX :)

flag

5 Answers

vote up 4 vote down check

Is it possible to write a REGEX (search replace) that when run on an XML string [...anything]

No.

Use an XML parser to read the string, then an XML serialiser to write it back out in ‘pretty’ mode.

Each XML processor has its own options so it depends on platform, but here is the somewhat long-winded way that works on DOM Level 3 LS-compliant implementations:

input= implementation.createLSInput();
input.stringData= unprettyxml;
parser= implementation.createLSParser(implementation.MODE_SYNCHRONOUS, null);
document= parser.parse(input);
serializer= implementation.createLSSerializer();
serializer.domConfig.setParameter("format-pretty-print", true);
prettyxml= serializer.writeToString(document);
link|flag
If it were possible to actually yell online, I would yell the first two sentences of this post a lot. – Robert Rossney Feb 13 at 20:32
vote up 2 vote down

Using a regex for this will be a nightmare. Keeping track of the indentation level based on the hierarchy of the nodes will be almost impossible. Perhaps perl's 5.10 regular expression engine might help since it's now reentrant. But let's not go into that road... Besides you will need to take into account CDATA sections which can embed XML declarations that need to be ignored by the indentation and preserved intact.

Stick with DOM. As it was suggested in the other answer, some libraries provide already a function that will indent a DOM tree for you. If not building one will be much simplier than creating and maintaining the regexes that will do the same task.

link|flag
vote up 2 vote down

I don't know if a regex, in isolation, could do a pretty-print format of an arbitrary XML input. You would need a regex being applied by a program to find a tag, locate the matching closing tags (if the tag is not self-closed), and so on. Using regex to solve this problem is really using the wrong tool for the job. The simplest possible way to pretty print XML is to use an XML parser, read it in, set appropriate serialization options, and then serialize the XML back out.

Why do you want to use regex to solve this problem?

link|flag
vote up 1 vote down

This would only be acheivable with multiple regexs, which will perform like a state machine.

What you are looking for is far better suited to an off the cuff parser.

link|flag
A single regex is already a state machine. I'm pretty sure that this would be possible with a regex (provided lookahead is supported) but the result would be pretty darn ugly. – Drew Noakes Feb 12 at 19:20
vote up 4 vote down

Doing this would be far, far simpler if you didn't use a regex. In fact I'm not even sure it's possible with regex.

Most languages have XML libraries that would make this task very simple. What language are you using?

link|flag

Your Answer

Get an OpenID
or

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