I am trying to figure out a regex pattern for the following img src tag
<img src="attachment.jpg" alt="attachment.jpg" />
I just want the img src tag here for instance the 'attachment.jpg", however is there such a pattern that can find the img src if its in different locations throughout the request, for instance like this
<img height="" weight="" src="attachment.jpg" alt="attachment.jpg" />
So within my returned pattern it would always find <img src="attachment.jpg" and then return me the "attachment.jpg" regardless of position