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.