R
redryderridesagain
the following code or something similar creates an endless loop in the
regexp.execute method
dim alongstring as string, mymatches as matchcollection
Set myRegExp = New RegExp
myRegExp.IgnoreCase = True
myRegExp.Global = True
myRegExp.Pattern = "the pattern here"
' the following loops endlessly with a string that is 1.3 million
characters long
Set myMatches = myRegExp.Execute(alongstring)
any ideas? tkx
regexp.execute method
dim alongstring as string, mymatches as matchcollection
Set myRegExp = New RegExp
myRegExp.IgnoreCase = True
myRegExp.Global = True
myRegExp.Pattern = "the pattern here"
' the following loops endlessly with a string that is 1.3 million
characters long
Set myMatches = myRegExp.Execute(alongstring)
any ideas? tkx