http://rosettacode.org/wiki/Strip_a_..._from_a_string
Uses "console"
Dim s,str1,rmv As String
 str1 = "She was a soul stripper. She took my heart!"
 rmv ="aei"
 s = Remove$(str1, Any rmv)
 PrintL s
 WaitKey