Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim sw As New StreamWriter([i]path to outputfile[/i])
Using sr As New StreamReader([i]path to inputfile[/i])
Do
Dim strLine As String = sr.ReadLine
If strLine.Substring(0, 4) <> "test" Then [i]'modify the search for lines you want to exclude here[/i]
sw.WriteLine(strLine)
End If
Loop Until sr.EndOfStream
sr.Close
End Using
sw.Close