The general consensus is never use RegEx for HTML parsing; an XML parser should be used instead.

Is there any commendable papers/theses out there which states/prove this?


After reading this answer to the "RegEx match open tags except XHTML self-contained tags" question and the subsequent 'Parsing Html The Cthulhu Way' blog post by Jeff Atwood, I am a bit annoyed that the head of our Computer Science department taught us 2/3 modules on parsing HTML with RegEx. I'm looking for something I can approach the department with so we can 'save the children'. I don't think they'd change course content based on a blog/SO post. It would be real nice if the documentation proves that an XML parser is the way forward also.


Edit:

This answer to the "RegEx match open tags except XHTML self-contained tags" question about Chomsky Hierarchy is interesting. Is there research out there to prove this is this case and therefore prove the overall point?

link|improve this question

75% accept rate
It's an opinion, or preference. There's no way to prove it right or wrong. – FakeRainBrigand Feb 3 at 23:13
Thanks but still I'm looking for some documentation which makes a strong case against using RegEx for this purpose – Adam Lynch Feb 3 at 23:14
1  
@FakeRainBrigand: There's a way to prove it right. All we need to do is show that HTML is not a regular language. – Igor Korkhov Feb 3 at 23:31
My guts tell me to flag this. But I cant nail the root cause. – stefan Feb 4 at 1:08
@Igor its also quite simple to make a valid HTML that is not a valid XML; <br> – stefan Feb 4 at 2:47
show 1 more comment
feedback

closed as not constructive by Kev Feb 4 at 15:09

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

I think many people find it distasteful since theoretical/formal "regular expressions" would be completely inadequate to parse general HTML documents. Since regex engines take their name from regular expressions, the distaste carries over... even though many regex engines are more powerful than "real" regular expressions in the sense that they can generate non-regular languages (like HTML).

HTML is non-regular because you can nest tags to an arbitrary depth. "Real" regular expressions - those which generate strictly the regular languages - cannot parse such languages (the language of matched parentheses, for instance, is context free and not regular; so is the language of strings beginning with n left parentheses and ending with n right parentheses). You can show a language is not regular by using the Pumping Lemma for regular languages or the Myhill-Nerode theorem.

That being said, I'm inclined to agree there's no harm in teaching how to use regex engines more powerful than regular expressions how to parse HTML. The real travesty is that regex engines can parse non-regular languages in the first place!

link|improve this answer
I think the point is that many people use RegExp engines without understanding the background, and often mess stuff up if they try to parse non-regular languages. – Raphael Feb 4 at 12:51
feedback

I'd say that the real point here isn't if it's better to use a regular expression of some other thing. The point is, in my opinion, that it's a well known problem and that there are a lot of good libraries designed by smart people that do a pretty good job. Therefore, it would make no sense to try to reinvent the wheel because basically you'll need to fix the same problems the creators of those libraries have already fixed for you.

Having said that, still it could have a lot of academic value to use regular expressions to parse HTML as an approach to discover some of those problems in an educational way that might be useful for the student, even though that wouldn't be the recommended approach in a real program.

link|improve this answer
Good point, which I knew someone would bring up. There might be value in learning it even if you wouldn't use it. Maybe it would be right to cover it but not to spend so much time on it. – Adam Lynch Feb 3 at 23:22
feedback

First of all, I don't claim to give an exhaustive answer to your question, but I'd rather like to express my view on this subject.

I don't really think that you need to approach your department with a bunch of scientific papers in order to save the children or proof the (almost obvious) fact that HTML is not a regular language and therefore cannot be recognized by finite state automaton (regular languages are exactly all languages that can be recognized by FSA). I'm sure your head of department knows all this.

Regular expressions are very powerful, but they are not omnipotent. To master them one needs to know all their strengths and weaknesses. Trying to parse HTML can reveal the latter. Yet it helps to learn how to decide where and why regexes can help, and where they should be avoided.

But the thing is, Stack Overflow is the place where most of the people hope to find answers to their practical questions. And the practical answer to the question "should I use some regular expression to parse my HTML file?" is "No, unless you want to shoot yourself in the foot" in 99% cases.

That said, it absolutely doesn't mean that any particular (limited) subset of HTML or XML cannot (or shouldn't) be parsed with regexes. Plus, many current implementations of regexes are not strict regexes, they can do much more than classical, pure regexes can.

As to the proof that pure regex cannot parse arbitrary HTML - you only need to show that no regular expression can describe the language of all words of the form anbn (i.e. aaa...abbb...b, where the number of as is equal to the number of bs), and therefore no regex can describe the following:

<div>
  <div>
    ...
      <div>

      </div>
    ...
  </div>
<div>

which is a perfectly valid HTML fragment (notice that a nuber of <div>s is arbitrary and not known in advance, this is key point).

HTH.

link|improve this answer
feedback

I think you are presenting a false dichotomy here. Not all valid html files are valid xml files. So xml parsers should not be used to parse html. Which doesn't mean that using regular expressions is your only other option.

link|improve this answer
HTML is SGML though so an SGML parser would be approprate (unless it's XHTML of course) – awoodland Feb 4 at 10:52
feedback

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