(私は非常に基本的なプログラマーです)
特定の単語「Customer」を見つけるために検索する必要があるテキストの本文があり、次の行を CustomerName として保存します (CustomerName = >テキスト行 <)
あなたの「テキスト本文」がプロパティTextBox
の利益を得ることができる場合:.Lines
Dim index As Integer
Dim customerName As String = ""
For i As Integer = 1 to TextBox1.Lines.Length - 1
If TextBox1.Lines(i-1).Contains("Customer") Then
customerName = TextBox1.Lines(i)
Exit For
End If
Next
プレーン テキストがある場合は、テキスト全体を分割する行を取得できます。
Dim lines() As String = sAllText.Split(Environment.NewLine())
そして、前と同じことを行いますが、 を使用する代わりに を使用TextBox1.Lines
しますlines
。