Now that you've got your text into a string, you can use string methods, specifically substring, to grab chunks of text:
VB Code:
  1. For i as integer = 0 to info.length - 1
  2.   console.writeline(info.substring(i,1))
  3. Next