vote up 142 vote down star
305

I need to match all of these opening tags:

<p>
<a href="foo">

But not these:

<br />
<hr class="foo" />

I came up with this and wanted to make sure I've got it right. I am only capturing the a-z.

<([a-z]+) *[^/]*?>

I believe it says:

  • Find a less-than, then
  • Find (and capture) a-z one or more times, then
  • Find zero or more spaces, then
  • Find any character zero or more times, greedy, except /, then
  • Find a greater-than

Do I have that right? And more importantly, what do you think? =)

EDIT:

Hmm, which answer to mark as correct? For the record, ALL the answers are appreciated. Many thanks!

flag
96  
I think that using a regular expression to process XML when there are plenty of good XML parsers out there is a bad idea. – David Dorward Nov 13 at 22:42
32  
<div style="background:url('/path/image.jpg');" title='Yes/No'> – Kobi Nov 13 at 22:44
3  
Kobi already provided a nice valid sample which contains slashes in the attributes. btw you also don't match e.g. <h1>, <h2>, ... <h6>. You will get a problem when there isn't a space but a tabulator or a new line character after the tag name too – jitter Nov 13 at 23:02
13  
By this point, I really think it should be axiomatic that, if you're trying to parse arbitrary XML/HTML, regular expressions are not the tool to use. – jamesnvc Nov 14 at 4:44
4  
If your input set is small/homogeneous enough that you don't need a parser, then you can just try it out and check manually whether the regexp hack matches what you want it to match. If you can't then you should rethink your need for a parser... – David Schmitt Nov 14 at 10:37
show 7 more comments

29 Answers

vote up 2575 vote down check

You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML. As I have answered in HTML-and-regex questions here so many times before, the use of regex will not allow you to consume HTML. Regular expressions are a tool that is insufficiently sophisticated to understand the constructs employed by HTML. HTML is not a regular language and hence cannot be parsed by regular expressions. Regex queries are not equipped to break down HTML into its meaningful parts. so many times but it is not getting to me. Even enhanced irregular regular expressions as used by Perl are not up to the task of parsing HTML. You will never make me crack. HTML is a language of sufficient complexity that it cannot be parsed by regular expressions. Even Jon Skeet cannot parse HTML using regular expressions. Every time you attempt to parse HTML with regular expressions, the unholy child weeps the blood of virgins, and Russian hackers pwn your webapp. Parsing HTML with regex summons tainted souls into the realm of the living. HTML and regex go together like love, marriage, and ritual infanticide. The <center> cannot hold it is too late. The force of regex and HTML together in the same conceptual space will destroy your mind like so much watery putty. If you parse HTML with regex you are giving in to Them and their blasphemous ways which doom us all to inhuman toil for the One whose Name cannot be expressed in the Basic Multilingual Plane, he comes. HTML-plus-regexp will liquify the n​erves of the sentient whilst you observe, your psyche withering in the onslaught of horror. Rege̿̔̉x-based HTML parsers are the cancer that is killing StackOverflow it is too late it is too late we cannot be saved the trangession of a chi͡ld ensures regex will consume all living tissue (except for HTML which it cannot, as previously prophesied) dear lord help us how can anyone survive this scourge using regex to parse HTML has doomed humanity to an eternity of dread torture and security holes using regex as a tool to process HTML establishes a breach between this world and the dread realm of c͒ͪo͛ͫrrupt entities (like SGML entities, but more corrupt) a mere glimpse of the world of reg​ex parsers for HTML will ins​tantly transport a programmer's consciousness into a world of ceaseless screaming, he comes, the pestilent slithy regex-infection wil​l devour your HT​ML parser, application and existence for all time like Visual Basic only worse he comes he comes do not fi​ght he com̡e̶s, ̕h̵i​s un̨ho͞ly radiańcé destro҉ying all enli̍̈́̂̈́ghtenment, HTML tags lea͠ki̧n͘g fr̶ǫm ̡yo​͟ur eye͢s̸ ̛l̕ik͏e liq​uid pain, the song of re̸gular exp​ression parsing will exti​nguish the voices of mor​tal man from the sp​here I can see it can you see ̲͚̖͔̙î̩́t̲͎̩̱͔́̋̀ it is beautiful t​he final snuffing of the lie​s of Man ALL IS LOŚ͖̩͇̗̪̏̈́T ALL I​S LOST the pon̷y he comes he c̶̮omes he comes the ich​or permeates all MY FACE MY FACE ᵒh god no NO NOO̼O​O NΘ stop the an​*̶͑̾̾​̅ͫ͏̙̤g͇̫͛͆̾ͫ̑͆l͖͉̗̩̳̟̍ͫͥͨe̠̅s ͎a̧͈͖r̽̾̈́͒͑e n​ot rè̑ͧ̌aͨl̘̝̙̃ͤ͂̾̆ ZA̡͊͠͝LGΌ ISͮ̂҉̯͈͕̹̘̱ TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚​N̐Y̡ H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ

Have you tried using an XML parser instead?

link|flag
110  
Is everything ok there? Is this a cry for help? :) – Kobi Nov 13 at 23:07
94  
Kobi: I think it's time for me to quit the post of Assistant Don't Parse HTML With Regex Officer. No matter how many times we say it, they won't stop coming every day... every hour even. It is a lost cause, which someone else can fight for a bit. So go on, parse HTML with regex, if you must. It's only broken code, not life and death. – bobince Nov 13 at 23:18
118  
++ for "The <center> cannot hold" – Horace Loeb Nov 13 at 23:27
392  
Chuck Norris can parse HTML with regex. – user93422 Nov 14 at 0:03
235  
A true work of art; I weep at the poetic beauty. – Marc Gravell Nov 14 at 0:29
show 95 more comments
vote up 192 vote down

While it is true that asking regexes to parse arbitrary HTML is like asking Paris Hilton to write an operating system, it's sometimes appropriate to parse a limited, known set of HTML.

If you have a small set of HTML pages that you want to scrape data from and then stuff into a database, regexes might work fine. For example, I recently wanted to get the names, parties, and districts of Australian federal Representatives, which I got off of the Parliament's Web site. This was a limited, one-time job.

Regexes worked just fine for me, and was very fast to set up.

link|flag
129  
+1 for incorporating Paris Hilton in your answer. – Andrew Song Nov 14 at 18:49
11  
So Paris Hilton did write an OS after all? – Amarghosh Nov 15 at 15:16
66  
Great, we're now debating the possibility of chuck norris parsing HTML with regular expressions .. and paris hilton writing an operating system. Jon Skeet, however, can do both AND paris hilton. – Tim Post Nov 16 at 5:12
20  
Has anyone ever actually seen Linux Torvalds and Paris Hilton in the same room at the same time? Hmmmm.... – Graeme Perrow Nov 16 at 18:06
24  
Can Paris Hilton even spell OS? – David M Nov 17 at 11:30
show 15 more comments
vote up 86 vote down

Disclaimer: use a parser if you have the option. That said...

This is the regex I use (!) to match HTML tags:

<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+>

It may not be perfect, but I ran this code through a lot of HTML. Note that it even catches strange things like <a name="badgenerator"">, which show up on the web.

I guess to make it not match self contained tags, you'd either want to use Kobi's negative look-behind:

<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+(?<!/\s*)>

or just combine if and if not.

To downvoters: This is working code from an actual product. I doubt anyone reading this page will get the impression that it is socially acceptable to use regexes on HTML.

Caveat: I should note that this regex still breaks down in the presence of CDATA blocks, comments, and script and style elements. Good news is, you can get rid of those using a regex...

link|flag
Nothing to complain about, just three down votes. I'm at -5, probably for not adding a warning not to use my code :) – Kobi Nov 16 at 14:10
Up for karma. And this makes 15 characters. – Jeff Nov 16 at 14:31
vote up 33 vote down

Perhaps http://www.crummy.com/software/BeautifulSoup/

link|flag
1  
Yes, especially given this comment "I'm parsing a block of XHTML, truncating it, then closing any tags that are left open after it's been truncated. The DOM XML stuff doesn't work because it's not properly formed XML." Use BeautifulSoup to truncate and prettify. – Mark Nov 15 at 18:51
vote up 17 vote down

I think the flaw here is that HTML is a Chomsky Type 2 grammar (context free grammar) and RegEx is a Chomsky Type 3 grammar (regular expression). Since a Type 2 grammar is fundamentally more complex than a Type 3 grammar - you can't possibly hope to make this work. But many will try, some will claim success and others will find the fault and totally mess you up.

link|flag
this is a very good answer – Paul Nathan Jan 4 at 18:25
vote up 9 vote down

I suggest using QueryPath (http://querypath.org/) for parsing XML and HTML. It's basically much the same syntax as jQuery, only it's on the server side.

link|flag
vote up 8 vote down

I find this small PHP library incredibly useful for parsing HTML tags: http://simplehtmldom.sourceforge.net/.

link|flag
Yep, this is the usual thing for HTML, when it's not well-formed XHTML anyway. – bobince Nov 13 at 23:34
vote up 6 vote down

I know Java isn't cool anymore, but if you want to use a really good library in Java, you might check into Tag soup which is built on top of Xerces. http://home.ccil.org/~cowan/XML/tagsoup/

link|flag
7  
Java was never cool ;) – notandy Dec 8 at 19:54
vote up 6 vote down

Try:

<([^\s]+)(\s[^>]*?)?(?<!/)>

It is similar to yours, but the last > must not be after a slash, and also accepts h1.

link|flag
10  
<a href="foo" title="5>3"> Oops </a> – Gareth Nov 13 at 23:11
1  
That is very true, and I did think about it, but I assumed the > symbol is properly escaped to &gt;. – Kobi Nov 13 at 23:16
15  
> is valid in an attribute value. Indeed, in the ‘canonical XML’ serialisation you must not use &gt;. (Which isn't entirely relevant, except to emphasise that > in an attribute value is not at all an unusual thing.) – bobince Nov 14 at 0:15
vote up 3 vote down

I don't know your exact need for this, but if you are also using .NET, couldn't you use Html Agility Pack?

Excerpt:

It is a .NET code library that allows you to parse "out of the web" HTML files. The parser is very tolerant with "real world" malformed HTML.

link|flag
vote up 2 vote down

You want the first > not preceded by a /. Look here for details on how to do that. Its referred to as negative lookbehind.

However, a naive implementation of that will end up matching <bar/></foo> in this example document

<foo><bar/></foo>

Can you provide a little more information on the problem you're trying to solve? Are you iterating through tags programatically?

link|flag
Yep, I sure am. Determining all the tags that are currently open, then compare that against the closed tags in a separate array. RegEx hurts my brain. – Jeff Nov 13 at 23:04
vote up 1 vote down
<?php
$selfClosing = explode(',', 'area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed');

$html = '
<p><a href="#">foo</a></p>
<hr/>
<br/>
<div>name</div>';

$dom = new DOMDocument();
$dom->loadHTML($html);
$els = $dom->getElementsByTagName('*');
foreach ( $els as $el ) {
    $nodeName = strtolower($el->nodeName);
    if ( !in_array( $nodeName, $selfClosing ) ) {
        var_dump( $nodeName );
    }
}

Output:

string(4) "html"
string(4) "body"
string(1) "p"
string(1) "a"
string(3) "div"

Basically just define the element node names that are self closing, load the whole html string into a DOM library, grab all elements, loop through and filter out ones which aren't self closing and operate on them.

I'm sure you already know by now that you shouldn't use regex for this purpose.

link|flag
If you're dealing with real XHTML then append getElementsByTagName with NS and specify the namespace. – meder Nov 15 at 14:39
seems odd that every answer above mine isn't a real solution, just a recommendation to use some sort of parser. OP - did you try my answer? :p – meder Jan 9 at 5:11
vote up 1 vote down

XPath Luke, is your father.

link|flag
vote up 1 vote down

Whenever I need to quickly extract something from an HTML document, I use tidy to convert it to XML and then use XPath or XSLT to get what I need. In your case, something like this: //p/a[@href='foo']

link|flag
vote up 1 vote down

If it was not for @bobince answer I would say you should develop your regexes in a Test Driven manner.

Thank God you didn't

But next time use TDD.

link|flag
vote up 0 vote down

Jeff can you tell us why you are doing this? What exactly is the problem you are solving.

link|flag
I'm parsing a block of XHTML, truncating it, then closing any tags that are left open after it's been truncated. The DOM XML stuff doesn't work because it's not properly formed XML. And I can't figure out how to make the DOM HTML methods output proper XHTML. Tidy is not an option, either. – Jeff Nov 14 at 19:41
Here's a more accurate description. I could use help with the question I asked underneath answer marked correct. stackoverflow.com/questions/1731531/… – Jeff Nov 14 at 20:24
And you want to implement the solution in PHP? – John Keyes Nov 15 at 23:31
vote up 0 vote down

The W3C explains parsing in a pseudo regexp form:
http://www.w3.org/TR/REC-xml-names/#ns-using

Follow the var links for QName, S, and Attribute to get a clearer picture.
Based on that you can create a pretty good regexp to handle things like stripping tags.

link|flag
vote up 0 vote down

You should check PHP DOM Functions. Very handy once you study this tutorial : http://php.net/manual/en/book.dom.php

link|flag
This is actually a very good answer! – AntonioCS Dec 28 at 22:11
Thnx man. PHP DOM saved me many times :) – Fotis Jan 9 at 14:59
vote up 0 vote down

It seems to me you're trying to match tags without a "/" at the end. Try this:

<([a-zA-Z][a-zA-Z0-9]*)[^>]*(?<!/)>
link|flag
vote up 0 vote down

I used a open source tool called HTMLParser before. It's designed to parse HTML in various ways and serves the purpose quite well. It can parse HTML as different treenode and you can easily use its API to get attributes out of the node. Check it out and see if this can help you.

link|flag
vote up 0 vote down

If you need this for PHP:

The PHP dom functions won't work properly unless it is properly formatted XML. No matter how much better their use is for the rest of mankind.

simplehtmldom is good, but I found it a bit buggy, and it is is quite memory heavy [Will crash on large pages.]

I have never used querypath, so can't comment on its usefulness.

Another one to try is my DOMParser which is very light on resources and I've been using happily for a while. Simple to learn & powerful.

For Python and Java, similar links were posted.

For the downvoters - I only wrote my class when the XML parsers proved unable to withstand real use. Religious downvoting just prevents useful answers from being posted - keep things within perspective of the question, please.

link|flag
vote up 0 vote down

Someone wrote a full html parser for PHP: http://htmlpurifier.org/

link|flag
Why is this -1?? This is also a good answer!!! – AntonioCS Dec 28 at 23:01
vote up 0 vote down

You can use nekohtml library to parse html. Чувак не парься и используй nekohtml http://nekohtml.sourceforge.net/

link|flag
vote up 0 vote down

I've recently wrote a HTML sanitizer in JAVA. It is based on a mixed approach of regex and JAVA code. Personally I hate regex and its folly (readability, maintainability etc.), but if you reduce the scope of its applications may fit your needs. Anyway, my sanitizer uses a white list for html tags and a black list for some style attributes. For your convenience I have setted up a playground so you can test if the code matches your requirements: playground and java code. Your feedback will be appreciated.

There is a small article describing this work on my blog: roberto.open-lab.com

link|flag
vote up 0 vote down

Even if this code works, I find it worrying in principle. In the article I downloaded by rapidshare SE I read that whitelists are superior to blacklists because they catch attacks that you don't know about. But even though you use a whitelist, your overall approach is more like a blacklist: look inside this string for "bad" stuff and erase it. I think it works, but I don't feel sure. I would be a lot happier if it constructed the output string from scratch, and every single thing that went into that string was either a string literal that you know is safe, or the output of HtmlEncode. A bug in your code should "fail-safe" and output nothing at all, and not "fail-deadly" and output the input unprocessed. For example, what if somebody later accidentally introduces a bug that causes the main loop to run the wrong number of times? (Hopefully your unit tests would spot it, of course, but it can be difficult to test for all eventualities.) The code would then fail-deadly and output all or part of the input unsanitized. At the very least, you should not be putting the sanitized string in the same variable as the unsanitized one.

link|flag
vote up 0 vote down

While the answers that you can't parse HTML with regexes are correct, they don't apply here. The OP just wants to parse one HTML tag with regexes, and that is something that can be done with a regular expression.

The suggested regex is wrong, though:

<([a-z]+) *[^/]*?>

If you add something to the regex, by backtracking it can be forced to match silly things like <a >>, [^/] is too permissive. Also note that <space>*[^/]* is redundant, because the [^/]* can also match spaces.

My suggestion would be

<([a-z]+)[^>]*(?<!/)>

Where (?<! ... ) is (in Perl regexes) the negative look-behind. It reads "a <, then a word, then anything that's not a >, the last of which may not be a /, followed by >".

Note that this allows things like <a/ > (just like the original regex), so if you want something more restrictive, you need to build a regex to match attribute pairs separated by spaces.

link|flag
vote up 0 vote down

I thought I was on dailywtf reading this post. The answer is obvious, and mentioned numerous times... RegEx is the wrong tool, no matter what language you are writing this in.

link|flag
vote up 0 vote down

As many people have already pointed out, HTML is not a regular language which can make it very difficult to parse. My solution to this is to turn it into a regular language using a tidy program and then to use an XML parser to consume the results. There are a lot of good options for this. My program is written using Java with the jtidy library to turn the HTML into XML and then Jaxen to xpath into the result.

link|flag
vote up 0 vote down

Although it's not suitable and effective to use regular expressions for that purpose sometimes regular expressions provide quick solutions for simple match problems and in my view it's not that horrbile to use regular expressions for trivial works.

There is a definitive blog post about matching innermost HTML elements written by Steven Levithan.

link|flag

Your Answer

Get an OpenID
or
never shown

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