Hi @all. After switching from local to server, we had to change some functions in our programming. The reason behind this is the utf-8 compatibility. The version we use is SAS 9.4. One function we had to change is compress to kcompress. Which is quite painful since kcompress doesn't support modifier. I've got a program that tries to fix telephone numbers. data work.DQ;
Phone='+49O64343565ABC'; output;
run;
data work.DQ; set work.DQ;
DQ_Phone=compress(Phone,"0123456789+",'k');
run; Do you have any idea how to extract a certain list of characters from one string and insert it into another without using compress and modifier? Thanks a lot for any help! Roman
... View more