Write in new line in rich text box. with vb

后端 未结 4 1751
[愿得一人]
[愿得一人] 2021-01-23 21:29

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

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-23 22:11

    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
    

提交回复
热议问题