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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to grep web contents

Status
Not open for further replies.

eepico

MIS
Jan 6, 2002
60
HK
Dear friends,

Does anyone know the procedure of VB6 on how to grep some matching strings (both on single-byte and double-byte) from some web sites and print their contents out? Just like a simple search engine does...

Poor-Jack
A newcomer on VB
 
2 functions can do what you want

instr <--- finds
replace <---replaces

both optionally take the following arguments

vbBinaryCompare = 0 = Performs a binary comparison.
vbTextCompare = 1 = Performs a textual comparison.


tryp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top