(我是一个非常基础的程序员)
我有一段文本需要搜索以找到特定的单词“客户”,然后将下一行保存为 CustomerName (CustomerName = >line of text<)
如果您的“正文”是一个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
。