Imports System.Collections.Generic
dim toSearch() As String = {"kiwi", "choco"}
Dim lines = GetLines(test).
Where(Function(line) toSearch.Any(Function(key) line.Contains(key)))
For Each line As String In lines
Public Iterator Function GetLines(input As String) As IEnumerable(Of String)
Dim line As String = Nothing
Using rdr As New StringReader(input)