str1 = "She was a soul stripper. She took my heart!" rmv = "aei" FOR i = 1 TO LEN(rmv) str1 = REPLACE(str1, MID(rmv, i, 1), "") NEXT PRINT str1,"\n"