Hi,
Another snippet I had from over my AutoIting. I know StringReplace() can do the same thing, but it's always nice to see people using their intuition isn't it
ConsoleWrite(_StringStripChr("AutoIt3 for the win!", "o") & @CRLF)
Func _StringStripChr($from, $what)
$StripOut = $From
For $i = 1 To StringLen($what)
$StripOut = StringReplace($StripOut, StringMid($what, $i, 1), "")
Next
Return $StripOut
EndFunc
James