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
Dim words As String = TextBox1.Text words.Replace(" ", ControlChars.Lf) RichTextBox1.Text = words
You just need to replace " " by ControlChars.Lf aka New Line Character
" "
ControlChars.Lf
New Line Character