instr would be simplest but as it at the start of the test string 0 will be returned if it is there or not
this will return true if found, false if not.
Code:
function Test(strIn)
dim objRE
set objRE = New RegExp
objRE.pattern = "([URL unfurl="true"]http://)"[/URL]
Test= objRE.Test(strIn)
set objRE = nothing
end function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.