html:
<img class="bubble large" src="/images/hero-logos/cog.svg" width="90%" />
C#:
var aRegexText = "<img.*src=\\\".*?\\\".*/>";
Regex aRegex = new Regex(aRegexText, RegexOptions.IgnoreCase);
MatchCollection aMatchCollection = aRegex.Matches(aHtml);