Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. Dim source As String = "1 Grapes 5.99"
  2. Dim split As String() = source.Split(ControlChars.Tab)
  3. Dim item As String = split(1)
  4. Console.WriteLine(item)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement