StringReplace does not accept the set as the second argument. Maybe someone will have a more suitable approach, but this works:
StringReplace(mString, '0', '', [rfReplaceAll, rfIgnoreCase]); StringReplace(mString, '1', '', [rfReplaceAll, rfIgnoreCase]); StringReplace(mString, '2', '', [rfReplaceAll, rfIgnoreCase]);
and etc.
RobertFrank
source share