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);
时间: 2024-10-21 01:52:21