Syntax error with regexp
Hello all, I've been tasked to support an asp app but unfortunately my background is in php or coldfusion.
I've run into the following error:
Microsoft VBScript compilation error '800a03ea'
Syntax error
/intraweb_sm/brandbuilder/includes/resolution.asp, line 112
Dim Re : Set Re = New RegExp
------------------^
The code is as follows:
Dim Re
Set Re = New RegExp
with Re
.Pattern = "href=""[^""]*"""
.Global = True
.IgnoreCase = True
Dim Matches
Set Matches = .Execute( sAttach )Ã Ã Ã ' Execute search.
end with
Thank you in advance for any hand you lend.
|