vote up 0 vote down star

I'm using VB.Net in an ASP.Net 2.0 app to run some regular expressions that remove some unnecessary markup. One of the things that I'd like to do is remove span elements that don't have any attributes in them:

output = Regex.Replace(output, "<span\s*>(?<Text>.*?)</span>" & styleRegex, "${Text}", RegexOptions.Compiled Or RegexOptions.CultureInvariant Or RegexOptions.IgnoreCase Or RegexOptions.Singleline)

So for this content:

<span>Lorem <span class="special">ipsum</span> dolor sit amet.</span>

I'd like to remove the outer span elements. Unfortunately, my regex above gives me this as a result, since the closing span matches the first one it comes across:

Lorem <span class="special">ipsum dolor sit amet.</span>

Is this possible with a RegEx or will I have to implement something a bit more advanced?

flag

8  
Since this is the (insert big number here)th iteration of the "Can I parse HTML with regex" topic, I'm posting this as a comment: Regex can't, by it's very definition, recognize nested structures. If you want to recognize a language (e.g. "nested structures"), by all means, use a parser. The behavior you see with your regex is as close as you will get with regex alone. – Tomalak May 29 at 15:59
I would like to give as many upvotes to Tomalak's comment as the number of times this has come up in the last week alone. – Svante May 29 at 16:12
So it sounds like the answer to my question is: No, yes. Do any of the previously asked similar questions have answers with code for VB.Net/Asp.Net 2.0? – travis May 29 at 16:21
1  
stackoverflow.com/questions/516811/…, stackoverflow.com/questions/56107/…, stackoverflow.com/questions/916057/…, ..., google.com/search?q=html+parsing+.net+site%3Astac… – Tomalak May 29 at 16:34
Since only one of those mentioned Vb.Net, and none had any code specific to vb.net, I'll take that as a no. :-) – travis May 29 at 16:41
show 2 more comments

4 Answers

vote up 0 vote down check

XSLT isn't an option since the input may not always be valid XML and the HTML Agility Pack on Codeplex looks pretty sweet but is really overkill in this case. Here's the final RegEx I ended up using:

<span\s*>(?<Text>.*?(?:<span[^>]*>.*?</span>.*?)*)</span>

Replacing that with ${Text} effectively stripped the useless outer span tags in all cases I've tested.

link|flag
vote up 0 vote down

HTML agility pack should help with this.

HTML Agility Pack on Codeplex

link|flag
vote up 2 vote down

Unfortunatly, regular expressions do not have this power. You'd need at least a context-sensitive language to express something like that. (sorry for the theoretical stuff)

I'd also propose to use XSLT instead.

link|flag
vote up 0 vote down

I would use XSLT rather than regex.

It seems .NET has good support for XSLT (google: xslt vb.net) but I don't know whether it will parse non-XHTML. The standard xsltproc command will, with the --html flag.

link|flag

Your Answer

Get an OpenID
or

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