Jump to content

Identifying Unclosed HTML Tags (Needs Tweaking)


jyushinx

Recommended Posts

Hi,

 

I currently have code which searches a string for unclosed html tags. It works well except for one glitch. A tag like

<br/>

will be read as closed. But a tag such as

<br />

won't. Clearly there is something up with my regex, but I have no idea as I am clueless with it.

 

Here is the code for finding open tags

 

preg_match_all("#<([a-z]+)( .*)?(?!/)>#iU",$html,$result);

 

Any ideas as to how I can modify the regex to recognize tags as being closed like

<br />

 

Thanks.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.