Grabbing a string and going through it line by line

  • Thread starter Thread starter Maziar Aflatoun
  • Start date Start date
M

Maziar Aflatoun

Hi,

I have a little application that reads a text file line-by-line and
processes each line depending on the CVS values. Now I want to change my
program to capture this from a textbox instead. How do I parse a string
line-by-line? Just like a file?

Thanks
Maz.
 
in VB split it on VbCrLf (const: carriage return line feed ) which will give
you an array of "lines" jd
 
Back
Top