Is it possible to make a vb program to open up html files and parse the actual html code itself and output specific information to a text file?
Printable View
Is it possible to make a vb program to open up html files and parse the actual html code itself and output specific information to a text file?
Yes. By the way, nice subject.
:)
Oh ok you can work with html files exactly the same way as youd work with a text file... GREAT!
Now i gotta search throught the file and find keywords.
just reading through msdn now to find the most effective function to use.
any suggestions are welcome.
Well you use Regular Expressions
or ...
InStr$()
Left$()
Right$()
Mid$()
ect..