我只想匹配第一个实例,有人能让我知道你会怎么做吗?
'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
答案 0 :(得分:3)
Global
属性应为false
,而不是true
。
该属性在http://msdn.microsoft.com/en-us/library/tdte5kwf(v=VS.85).aspx描述。