This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |
varname = compress(varname, , ‘kw’);
The modifier “k” stands for ‘KEEP’ and the modifier “w” stands for ‘WRITABLE’. When compress function is used in combination of K & W modifiers, it keeps all the writable characters which means it deletes all the non writable characters.
This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |