May 30th, 2006, 05:55 PM
#1
Thread Starter
Addicted Member
removing unnecessary lines
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
Attached Files
May 30th, 2006, 06:20 PM
#2
Re: removing unnecessary lines
Use the Replace function
VB Code:
MyString = Replace(MyString, "----", "")
May 30th, 2006, 06:32 PM
#3
Thread Starter
Addicted Member
Re: removing unnecessary lines
so what will my string be?
May 30th, 2006, 06:34 PM
#4
Re: removing unnecessary lines
"MyString" would contain all the text from the text file in your first post.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Click Here to Expand Forum to Full Width