经典ASP VB中的正则表达式

时间:2011-12-15 11:11:30

标签: regex asp-classic vbscript

我只想匹配第一个实例,有人能让我知道你会怎么做吗?

'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

1 个答案:

答案 0 :(得分:3)

Global属性应为false,而不是true

该属性在http://msdn.microsoft.com/en-us/library/tdte5kwf(v=VS.85).aspx描述。