複数行のテキスト ボックスの段落に次の内容が含まれているとします。
stringrandom@good
stringra12312@good
stringr2a123@bad
strsingra12312@good
strinsgr2a123@bad
次のような出力を生成したい:
stringrandom@good
stringra12312@good
strsingra12312@good
使ってみました
If TextBox1.Lines.Count > 2 Then
Dim newList As List(Of String) = TextBox1.Lines.ToList
If newList.Contains("@bad") Then
newList.RemoveAt(newList.Item(newList.Contains("@bad")))
End If
TextBox1.Lines = newList.ToArray
End If
うまくいきません、誰か回避策を知っていますか?