string issues

  • Thread starter Thread starter Troy
  • Start date Start date
T

Troy

Hello,

I'm reading a line froma text file that has words separated by a comma. Any
ideas on how I can parse through the string and store the individual words?
also, any tutorials out there on the data grid. I'd like to display the
words after they're parsed using the data grid. Any help is appreciated.

thanks
 
Troy said:
I'm reading a line froma text file that has words separated by a comma.
Any ideas on how I can parse through the string and store the individual
words? also, any tutorials out there on the data grid. I'd like to display
the words after they're parsed using the data grid. Any help is
appreciated.

You can split the line using 'String.Split' or 'Strings.Split'.
Alternatively you may want to take a look at
<URL:http://www.connectionstrings.com/> -> "Text".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top