Originally posted by ironmanbori
I am making a netflix account checker & was wondering how i can get the rich text box to read the info in order?
I believe you could use Split function of the string
So it will split the string everytime it noticed a new line
Something like that
Dim StringArray As String() = richTextBox1.Text.Split(Environment.NewLine)
'Then just use for each loop to whatever you want
For Each (Item As String in StringArray)
'Shit here
Next
Something like that, im working on blind here without visual studio but it suppose to be something like that.