Happy Friday everyone!
I would appreciate some direction on this.
I have processed an .html file as follows:
strStringToClean = Replace(strStringToClean, vbCr, vbCrLf)
strStringToClean = Replace(strStringToClean, vbLf, vbCrLf)
strStringToClean = Replace(strStringToClean, cr, vbCrLf)
strStringToClean = Replace(strStringToClean, lf, vbCrLf)
strStringToClean = Replace(strStringToClean, """""", """")
(as you can see, throwing in some redundant lines in a effort to trouble shoot)
When the file is close and then inspected in NotePad++ I see "CR LF" at the end of every line (the original file has only "LF". However, when I open it for input (Open MyFile for Input as #1), everything is pulled back as a single line, making it almost impossible to parse.
Any thoughts would be greatly appreciated.
Thanks!
Trip