次の最初の行に続いて「published」という文字列を取得したいと思います。これが私のコードです:
Dim builder As New StringBuilder()
Dim reader As New StringReader(txtOCR.Text)
While True
Dim line As String = reader.ReadLine()
If line Is Nothing Then Exit While
If Not line.ToLower().Contains("published") Then
builder.AppendLine(line)
End If
End While
txtOCR.Text = builder.ToString()
このコードは、「published」という文字列が続くすべての行を取得しますが、次の最初の行のみを取得したいと思います。