I have attached a screen shot of a special purpose routine to
change all occurrences of hex FEFF (a Byte Order Marker) to blank
in a string.
This would help you only if you know in advance what you want to strip.
If you want to remove all unreadable characters from a string,
try this code ...
VALID_Chars = " 0123456789abcdefg...xyzABCD...XYZ"
FOR I = 1 to length(inputstring)
IF NOT(CONTAINS(VALID_Chars,segment(inputstring,I,1)) THEN
REPLACE(inputstring,I," ")
end FOR
If you want to do it to a list, do it to each element of the list
one by one.