Possible Duplicate:
RegEx match open tags except XHTML self-contained tags
I would like to ensure that HTML attributes have quotes around them as is required by xhtml.
For example:
<BODY link=#0000ff vLink=#800080>
should be
<BODY link="#0000ff" vLink="#800080">
I am looking for a Regex pattern that would handle this.
Thanks