vote up 1 vote down star

Lets say I need to get a string inside some h1, h2, or h3 tags

/<[hH][1-3][^>]*>(.*?)<\/[hH][1-3]>/

This works great if the user decides to take a sane approach to headers:

<h1>My Header</h1>

but knowing my users, they want bold, italic, underlined h1's. And they have that coding quagmire tinyMCE to help them do it. TinyMCE would output:

<h1><b><span style='text-decoration: underline'><i>My Hideous Header</i></span></b></h1>

So my question is:

How do i get a string inside h1 h2, or h3, and then inside any amount of surrounding other tags as well?

Thanks, Joe

flag

80% accept rate
1  
What about this? <h1><b>My <i>Hideous</i> Header</b></h1> Would you want to retrieve the full title string with its embedded <i> tags? – Alan Moore Sep 3 at 0:06

3 Answers

vote up 1 vote down check

If you're in php you can use your regex:

/<[hH][1-3][^>]*>(.*?)<\/[hH][1-3]>/

then pass the captured result through strip_tags() function to get rid of all the insanity inside.

If you are not on php you can pass the result through regexp replace that removes tags. Something like replace /<\/?[^>]+?>/ with empty string.

link|flag
vote up -1 vote down

If you only want to capture the ultimately nested text you could just drop all tags inside the header tag with:

/<([hH][1-3]).*>(.*?)<.*\/$1>/

Untested, but I think it should work.

link|flag
1  
Nope. (.*?) is allowed to match nothing, and thanks to the greedy .* ahead of it, that's exactly what it does. – Alan Moore Sep 3 at 4:08
vote up 3 vote down
/<(h[1-3])[^>]*>(?:.*?>)?([^<]+)(?:<.*?)?<\/\1>/i

It will not be too hard to make cases that break it hideously, since (as I'm sure people will tell you) parsing HTML is a job for an HTML parser, not a regex, but it works for your given case and various similar ones.

link|flag
+1, especially for the "don't use regex for this" comment – simonn Sep 2 at 21:06
+1 for the same reasons as simonn! – TrueWill Sep 2 at 23:34

Your Answer

Get an OpenID
or

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