vote up 32 vote down star
18

One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard:

People want to treat a file as a sequence of lines, but this is valid:

<tag
attr="5"
/>

People want to treat < or <tag as the start of a tag, but stuff like this exists in the wild:

<img src="imgtag.gif" alt="<img>" />

People often want to match starting tags to ending tags, but XML and HTML allow tags to contain themselves (which traditional regexes cannot handle at all):

<span id="outer"><span id="inner">foo</span></span>

People often want to match against the content of a document (such as the famous "find all phone numbers on a given page" problem), but the data may be marked up (even if it appears to be normal when viewed):

<span class="phonenum">(<span class="area code">703</span>)
<span class="prefix">348</span>-<span class="linenum">3020</span></span>

Comments may contain poorly formatted or incomplete tags:

<a href="foo">foo</a>
<!-- FIXME:
    <a href="
-->
<a href="bar">bar</a>

What other gotchas are you aware of?

flag

59% accept rate
1  
This should be community wiki. – Welbog Mar 31 at 14:16
3  
Web browsers make sense of this kind of mess millions of times a second, can't somebody create a web page parser class for us mere mortals? – Jon Winstanley Mar 31 at 14:18
4  
Jon, they have. In Perl there are many HTML::Parser, HTML::TreeBuilder, etc. There is almost certainly one for your langauge. – Chas. Owens Mar 31 at 14:41
Jon, what language are you looking for, and are you looking for parsing well-formed XML, or HTML tag soup that you get on the web? – Brian Campbell Mar 31 at 18:46

8 Answers

vote up 30 vote down check

Here's some fun valid XML for you:

<!DOCTYPE x [ <!ENTITY y "a]>b"> ]>
<x>
    <a b="&y;>" />
    <![CDATA[[a>b <a>b <a]]>
    <?x <a> <!-- <b> ?> c --> d
</x>

And this little bundle of joy is valid HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" [
    <!ENTITY % e "href='hello'">
    <!ENTITY e "<a %e;>">
]>
    <title>x</TITLE>
</head>
    <p id  =  a:b center>
    <span / hello </span>
    &amp<br left>
    <!---- >t<!---> < -->
    &e link </a>
</body>

Not to mention all the browser-specific parsing for invalid constructs.

Good luck pitting regex against that!

EDIT (Jörg W Mittag): Here is another nice piece of well-formed, valid HTML 4.01:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd"> 
<HTML/
  <HEAD/
    <TITLE/>/
    <P/>
link|flag
I have no idea what is going on in the first example, could you add some explanatory text? – Chas. Owens Apr 1 at 6:23
1  
The XML one? There are a few different constructs there, which is troublesome? The DTD internal subset? That's defining a new &entity; called ‘y’, containing a ‘]>’ sequence that would normally, if not in quotes, end the internal subset. – bobince Apr 1 at 12:56
1  
(This demonstrates that you have to have quite deep knowledge about some of the more esoteric and archaic DTD features of XML to parse a document properly, even if you aren't a DTD-validating parser.) – bobince Apr 1 at 12:57
10  
And then people bitch about XHTML being too strict. Damn it all, I want my XHTML to be Nazi strict! I want all the browsers to fail if there is a single space missing! Then we'll talk about parsing.. – dr Hannibal Lecter May 13 at 0:10
vote up 6 vote down

It depends on what you mean by "parsing". Generally speaking, XML cannot be parsed using regex since XML grammar is by no means regular. To put it simply, regexes cannot count (well, Perl regexes might actually be able to count things) so you cannot balance open-close tags.

link|flag
vote up 43 vote down

XML is not a regular language.

edit: also, your language already has an XML parser, why don't you use that instead of inventing your own?

link|flag
1  
It might be noted here, that modern regexes can do more than regular languages, but only so much. You will need a context free grammar to parse XML, HTML etc. – Daren Thomas Mar 31 at 15:22
1  
Yes, this is true. I was trying to go for conciseness in my answer; I wanted to point out that regular expressions are a fundamentally wrong tool to try to parse XML. Really, there are XML parsers available for almost every language and platform; why not just use those? – Brian Campbell Mar 31 at 15:27
Yes, but saying that regexes fundamentally can't parse XML and HTML doesn't persuade people; I have tried it. That is why I am collecting examples of what causes the problems. Hopefully by having a list of what can go wrong people will realize "oh, that is what they meant by not a regular language". – Chas. Owens Mar 31 at 15:47
@Chas. Owens Edited my reply to include another reason, then, which is that it's not a good idea to reinvent the wheel. I think if people aren't convinced by these two reasons, they aren't going to be convinced by much else. – Brian Campbell Mar 31 at 16:10
3  
+1 for taking the time to enumerate so many different parsers :) – JaredPar Mar 31 at 16:42
show 3 more comments
vote up 14 vote down

I wrote an entire blog entry on this subject: http://blogs.msdn.com/jaredpar/archive/2008/10/15/regular-expression-limitations.aspx

The crux of the issue is that HTML and XML are recursive structures which requiring counting mechanisms in order to properly parse. A true regex is not capable of counting. You must have a context free grammar in order to count.

The previous paragraph comes with a slight caveat. Certain regex implementations now support the idea of recursion. However once you start adding recursion into your regex expressions, you are really stretching the boundaries and should consider a parser.

link|flag
vote up 1 vote down

People normally default to writing greedy patterns, often enough leading to an un-thought-through .* slurping large chunks of file into the largest possible <foo>.*</foo>.

link|flag
lazy/ungreedy is your friend! – – Keng Mar 31 at 14:59
vote up 14 vote down

Actually

<img src="imgtag.gif" alt="<img>" />

is not valid HTML, and is not valid XML either.

It is not valid XML because the '<' and '>' are not valid characters inside attribute strings. They need to be escaped using the corresponding XML entities &lt; and &gt;

It is not valid HTML either because the short closing form is not allowed in HTML (but is correct in XML and XHTML). The 'img' tag is also an implicitly closed tag as per the HTML 4.01 specification. This means that manually closing it is actually wrong, and is equivalent to closing any other tag twice.

The correct version in HTML is

<img src="imgtag.gif" alt="&lt;img&gt;">

and the correct version in XHTML and XML is

<img src="imgtag.gif" alt="&lt;img&gt;"/>

The following example you gave is also invalid

<
tag
attr="5"
/>

This is not valid HTML or XML either. The name of the tag must be right behind the '<', although the attributes and the closing '>' may be wherever they want. So the valid XML is actually

<tag
attr="5"
/>

And here's another funkier one: you can actually choose to use either " or ' as your attribute quoting character

<img src="image.gif" alt='This is single quoted AND valid!'>

All the other reasons that were posted are correct, but the biggest problem with parsing HTML is that people usually don't understand all the syntax rules correctly. The fact that your browser interprets your tagsoup as HTML doesn't means that you have actually written valid HTML.

Edit: And even stackoverflow.com agrees with me regarding the definition of valid and invalid. Your invalid XML/HTML is not highlighted, while my corrected version is.

Basically, XML is not made to be parsed with regexps. But there is also no reason to do so. There are many, many XML parsers for each and every language. You have the choice between SAX parsers, DOM parsers and Pull parsers. All of these are guaranteed to be much faster than parsing with a regexp and you may then use cool technologies like XPath or XSLT on the resulting DOM tree.

My reply is therefore: not only is parsing XML with regexps hard, but it is also a bad idea. Just use one of the millions of existing XML parsers, and take advantage of all the advanced features of XML.

HTML is just too hard to even try parsing on your own. First the legal syntax has many little subtleties that you may not be aware of, and second, HTML in the wild is just a huge stinking pile of (you get my drift). There are a variety of lax parser libraries that do a good job at handling HTML like tag soup, just use these.

link|flag
You don't need to escape > as > though. – Johannes Rössel Mar 31 at 14:49
Okay, s/valid/exists in the wild/g – Chas. Owens Mar 31 at 15:00
Actually, according to the specification you must escape > as > just as you must escape < as < & and &amp; and in attributes " as &quot; and ' as &apos; it's just that many parser – LordOfThePigs Mar 31 at 15:02
opps, forgot the finish my comment. It's just that many parsers will be able to recover from their error state if < is properly encoded. Again, not crashing your parser doesn't mean your XML is valid. – LordOfThePigs Mar 31 at 15:03
1  
The specification does not say ‘>’ must be escaped — except for the special case of the sequence ‘]]>’ in content. For this reason it is easiest to always escape ‘>’, but it is not required by spec. – bobince Mar 31 at 17:03
show 1 more comment
vote up 1 vote down

Are people actually making a mistake by using a regex, or is it simply good enough for the task they're trying to achieve?

I totally agree that parsing html and xml using a regex is not possible as other people have answered.

However, if your requirement is not to parse html/xml but to just get at one small bit of data in a "known good" bit of html / xml then maybe a regular expression or even an even simpler "substring" is good enough.

link|flag
2  
Define "good enough". Inevitably the simple regex won't work. Is not matching something or matching something you shouldn't a bug? If so then using regexes is a mistake. HTML and XML parsers are not hard to use. Avoiding learning them is a false economy. – Chas. Owens Mar 31 at 15:35
ok, define "good enough". Lets say I have a webpage that tells me the clients IP address. That's all it does. Now, I need to write an application for the clients machine that tells me its IP address. I go to that site, look for an IP address and return it. Parsing the HTML is not needed! – Robin Day Mar 31 at 17:53
1  
If you have an arbitrary string whose format is completely under your control, the fact that the string happens to be well-formed XML really isn't relevant. But almost no use cases for XML actually fall into this category. – Robert Rossney Mar 31 at 19:18
4  
I can tell you from painful experience that most of the time it's possible to get what you want utilizing absurd complex regex patterns. Until the website undergoes a hilarious small change and you can throw this regex that made you cry for two days out of the window and start anew. – Thomasz Apr 4 at 14:47
vote up 5 vote down

One gotcha not on your list is that attributes can appear in any order, so if your regex is looking for a link with the href "foo" and the class "bar", they can come in any order, and have any number of other things between them.

link|flag
Ah, yes, that was even the question that prompted me to ask this one (the first link). – Chas. Owens Apr 1 at 6:22

Your Answer

Get an OpenID
or

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