spilt data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In my table i have data such as cars-- trucks - etc,
how can i remove the - from the data item?
 
I dont know if I understand what's your question.

This sample shows how you can craete a data array from a delimitted string.
Dim y As String = "Test1-Test2-Test2"
Dim x As Array() = y.Split("-")
 

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