Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

grap text from querystring

Status
Not open for further replies.
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


Chris.

Indifference will be the downfall of mankind, but who cares?
Woo Hoo! the cobblers kids get new shoes.
People Counting Systems

So long, and thanks for all the fish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top