Regular Expression to find a tag with a missing attribute.
Here's my case, I'm trying to find an <img> tag that has a missing alt property. how would I write that so that regex in Dreamweaver's find/replace, so that I don't have to review every individual <img> tag, verifying it has an alt property, until I find the tag I'm looking for?
I found a blog article that specifically addressed, this, but the regex didn't work:
<imgs+((width|height|border|class|id|src|usemap|hspace|vspace)=”[^"]+”s*)+/>
(I added the "/" at the end, since my document is XHTML)
