I was just going this answer HERE, and i was just playing arouund with the regex in the answer until i reduced one of the regexs to the following:
([^"])
And then i add the below string:
<img src="/sites/ContentCenter/Graphics/map-al.jpg" alt="map al" style="width:611px;height:262px;" /> <br></p><p><br></p><p>
To check against the above regex , SEE HERE , now the above regex mathces the <
of the img tag , why do ? why does ([^"])
match the <
in the image tag ? can somebody explain ?