vote up 90 vote down star
190

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
72  
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
24  
<div style="background:url('/path/image.jpg');" title='Yes/No'> – Kobi Nov 13 at 22:44
2  
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
11  
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
3  
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 6 more comments

21 Answers

vote up 1877 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
71  
Is everything ok there? Is this a cry for help? :) – Kobi Nov 13 at 23:07
60  
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
85  
++ for "The <center> cannot hold" – Horace Loeb Nov 13 at 23:27
241  
Chuck Norris can parse HTML with regex. – unknown (google) Nov 14 at 0:03
158  
A true work of art; I weep at the poetic beauty. – Marc Gravell Nov 14 at 0:29
show 71 more comments
vote up 122 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 were very fast to set up.

link|flag
85  
+1 for incorporating Paris Hilton in your answer. – Andrew Song Nov 14 at 18:49
7  
So Paris Hilton did write an OS after all? – Amarghosh Nov 15 at 15:16
4  
No, the question is: Did actually someone ask Paris Hilton to write an OS? – Mauli Nov 15 at 21:47
40  
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. – tinkertim Nov 16 at 5:12
9  
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
show 7 more comments
vote up 52 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 20 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 6 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 4 vote down

try:

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

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

link|flag
7  
<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
12  
> 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 4 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 4 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
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

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? – johnkeyes Nov 15 at 23:31
vote up 1 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 1 vote down

XPath Luke, is your father.

link|flag
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
vote up 0 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
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

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 0 vote down

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

link|flag
vote up 0 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 0 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
vote up -1 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

Your Answer

Get an OpenID
or

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