I'm trying to figure out the regex for the following:

String</td><td>[number 0-100]%</td><td>[number 0-100]%</td><td>String</td><td>String</td>

Also, some of these td tags may have style attributes at some point. I tried this:

String<.*>

and that returned

String</td>

but trying

String<.*><.*>

returned nothing. Why is this?

link|improve this question

75% accept rate
what language are you using for the regex? java? – sheeks06 Sep 9 '10 at 6:12
PHP, but that shouldn't matter, should it? – codersarepeople Sep 9 '10 at 6:23
It does, because some programming languages use different regular expression syntaxes. – BoltClock Sep 9 '10 at 6:26
feedback

4 Answers

(.+)</td><td>(1?\d?\d)%</td><td>(1?\d?\d)%</td><td>(.+)</td><td>(.+)</td>
link|improve this answer
This is good, but the tags won't always be <td>, sometimes they will have attributes and say <td style=....> – codersarepeople Sep 9 '10 at 6:15
feedback

use Character class, like <td[^>]*> if <td> or <td class="abc">

link|improve this answer
feedback

You probably shouldn't be trying to use a regex to parse HTML, because that way lies madness.

link|improve this answer
Nice article :) – Zafer Sep 9 '10 at 6:35
feedback

Try the following:

(.+)(<[^>]+>){2}(1?\d?\d)%(<[^>]+>){2}(1?\d?\d)%(<[^>]+>){2}(.+)(<[^>]+>){2}(.+)<[^>]+>

You can test it here.

EDIT: Although this will work for most of the time, if there is > character in one attribute of the tag, this regex won't work.

link|improve this answer
> is allowed in an attribute value. – Gumbo Sep 9 '10 at 6:29
I was writing this as an edit :). – Zafer Sep 9 '10 at 6:29
feedback

Your Answer

 
or
required, but never shown

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