Я просто хочу сопоставить первый случай, кто-нибудь может дать мне знать, как вы поступите с этим?
'RegEx to get Image
Dim re, matches, Img
Set re = new RegExp ' creates the RegExp object
re.IgnoreCase = true
re.Global = true
re.Pattern = "<img.*(.|\n)*?/>"
Set Matches = re.Execute(string)
Img = ""
For each Item in Matches
Img = Item.Value
Next