Hi
I was wondering what the best way would be to convert the text in a multi-line text box to a List (Of String)?
Basically, I want to detect 'carriage returns' and translate the text btw to a list entry...
For instance,
String1
String2
String3
should =>
List(1) = String1
List(2) = String2
List(3) = String3
Thanks!
I was wondering what the best way would be to convert the text in a multi-line text box to a List (Of String)?
Basically, I want to detect 'carriage returns' and translate the text btw to a list entry...
For instance,
String1
String2
String3
should =>
List(1) = String1
List(2) = String2
List(3) = String3
Thanks!