I need some help on opening files and pointing to particular lines in files
For example I had a text file called
text1.txt
----start of file-----
one
two
three
four
five
---end of file----
How can I copy the entire third line into a file called output.txt?
so the outcome of this command would be
output.txt
---start of file---
three
---end of file---
how would i implement something like this in VB? thanks for your time
For example I had a text file called
text1.txt
----start of file-----
one
two
three
four
five
---end of file----
How can I copy the entire third line into a file called output.txt?
so the outcome of this command would be
output.txt
---start of file---
three
---end of file---
how would i implement something like this in VB? thanks for your time