Writing with Split

  • Thread starter Thread starter google_groups3
  • Start date Start date
G

google_groups3

OK, hopefully a nice quick question!

I have used the Split to chop up a line of text. At the end of my
function, I want to amend one of the datum in the array. I can use
StringSplit(1)="whatever" to write the text back into the array in
memory, but how do I get VB.Net to now write this value back to the
file that it first read the line from? Is it something simple? Or
will I need to re-write the whole line again to the bottom of the file?
Thanks
 
OK, hopefully a nice quick question!

I have used the Split to chop up a line of text. At the end of my
function, I want to amend one of the datum in the array. I can use
StringSplit(1)="whatever" to write the text back into the array in
memory, but how do I get VB.Net to now write this value back to the
file that it first read the line from? Is it something simple? Or
will I need to re-write the whole line again to the bottom of the file?
Thanks

Not to worry, this was a silly question. I realised my error.
 
Back
Top