net 2.0 program and in it I have a multi line text box.
For one of my operations I only need to retrieve certain parts of the txt box
for instance

I need to retrieve the following
- 01-11-2013 15-18-12 –
- Computer: 740TMP
- 01-11-2013 15-18-13 –
- Computer: 740TMP
The text box can have just 1 entry or 30 entry. I know I can truncate the lines but then I would still have extra lines in the final results.. Any Ideas?
Use a
List(Of String)to store the result with your desired lines. Then use a loop to iterate all lines in the TextBox and take what you need.For example: