hi there i have attached my txt file and i would like to know on how to remove the unncesseary lines like the "----" headers, and some lines that i want to remove.. thanks
Printable View
hi there i have attached my txt file and i would like to know on how to remove the unncesseary lines like the "----" headers, and some lines that i want to remove.. thanks
Use the Replace function
VB Code:
MyString = Replace(MyString, "----", "")
so what will my string be?
"MyString" would contain all the text from the text file in your first post.