I have richtextbox1.te xt (that shows a list of items). I would like to
search that box for the same number of characters and show the results
in another text box (text box 2)
Here is a image of what i am asking:
search that box for the same number of characters and show the results
in another text box (text box 2)
Code:
For Each item As String In RichTextBox2.Lines
If item.Length = "\w{80}" then
' do not now what to do ????
End if
Next
Here is a image of what i am asking:
Comment