how can i grab or search querysting for just http:// i.e if the querystring was i want to search the string for just
thanks
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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