I need to split an HTML file, that is being created in Word, by a delimiter, which in this case is these characters: [section]. The HTML is cleaned before it gets to this point by removing line breaks and most of the nasty MS Word HTML.

Still, MS Word will put all kinds of HTML tags in between the brackets and the word 'section': [<any number/kind of HTML tags and sometimes none>section<any number/kind of html tags and sometimes none>]

I was using this:

preg_split ("/\[(.*?)section(.*?)\]/", $text);

...till the user put some other text between brackets and then that matched and they lost a chuck of text.

I've switched to this:

preg_split ("/\[((<.+?>)*)section((<.+?>)*)\]/", $text);

Which seems to be working fine.

I'm interested to know if there is a better way to setup this regex.

link|improve this question
There's already reams of essays on why using regex on HTML is a really bad idea so I'll just say to google an explanation why. But PHP has perfectly good DOM parsing classes, and you should use those instead. – GordonM Nov 22 '11 at 19:42
And, of course, The <center> cannot hold it is too late – derobert Nov 23 '11 at 7:36
feedback

closed as too localized by Esailija, FailedDev, martin clayton, derobert, ChrisF Nov 23 '11 at 9:38

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.