Hi guys i want to know how to write every word in a phrase in a new line in a richtextbox lets say the phrase is this \"Returns a string array that contains the substrings in t
You can use the vbCrLf constant:
For Each s As String In split If s.Trim() <> "" Then RichTextBox1.Text = (s) + vbCrLf End If Next s