Hello VB.net'ers.
I've got a problem. I have a feeling it is an easy one, but for the life of me i cant figure it out.
My project at the moment is to grab content from a website and use it in some way (havent worked out this part yet, still trying to get the data).
Currently, i have grabbed the whole website and written it to a text file.. No dramas there.
Then i read each line until i find a certain string... Again, no dramas.
MY problem is; after reading and finding the certain string, i want the program to grab whatever "characters" there are until it reads a certain string again, and then put those characters into a string for later use.
so for example:
READ WEBSITE...
CREATE TXT FILE...
WRITE TO TXT FILE...
READ EACH LINE IN TXT FILE UNTIL "abc" IS FOUND...
"abc" IS FOUND...
READ THE 3 CHARACTERS AFTER "abc"... << this is the part im struggling at
WRITE THESE CHARACTERS TO A STRING...
USE STRING FOR WHATEVER PURPOSE...
Any help is appreciated!! :)
Regards
Gobble45