Trying to figure out how to find the text that is typed in "SeedKW text" and when Cmd button i clicked, it removes that text from "SeedKW text" from listview2

vb Code:
  1. Dim srt As String = "Searches related to " & SeedKW.Text
  2.         For Each srtItem As ListViewItem In ListView2.Items
  3.             If srtItem.SubItems.Item(0).Text = srt Then
  4.                 MsgBox(srt)
  5.             End If
  6.         Next

I Would like to have it search for a partial string like and removing everything from listview one that contains "Searches related to" is that's possible.