まず、次のように、テキスト ファイルの各行を読み取る必要があります。
For Each line As String In System.IO.File.ReadAllLines("PathToYourTextFile.txt")
Next
次に、一致させたい文字列を検索する必要があります。見つかった場合は、次のように置換値に置き換えます。
Dim outputLines As New List(Of String)()
Dim stringToMatch As String = "ValueToMatch"
Dim replacementString As String = "ReplacementValue"
For Each line As String In System.IO.File.ReadAllLines("PathToYourTextFile.txt")
Dim matchFound As Boolean
matchFound = line.Contains(stringToMatch)
If matchFound Then
' Replace line with string
outputLines.Add(replacementString)
Else
outputLines.Add(line)
End If
Next
最後に、次のようにデータをファイルに書き戻します。
System.IO.File.WriteAllLines("PathToYourOutputFile.txt", outputLines.ToArray(), Encoding.UTF8)