G
Guest
I have adapted code found elsewhere,, to search through a collection of files
and return the complete line of text where the search string is found. The
files I am searching through are html files and the line returned contains
all the control characters as the file is opened as a text file. Is it
possible to open a file in html and hide the code, searching solely on the
text??
Open MyFileName For Input As #1 ' Open to read file.
Do Until EOF(1)
Line Input #1, MyFile
and return the complete line of text where the search string is found. The
files I am searching through are html files and the line returned contains
all the control characters as the file is opened as a text file. Is it
possible to open a file in html and hide the code, searching solely on the
text??
Open MyFileName For Input As #1 ' Open to read file.
Do Until EOF(1)
Line Input #1, MyFile