HomeContact
Base SAS
How to use compress function in SAS?
Subhro Kar
Subhro Kar
May 23, 2020
2 min

Table Of Contents

01
Compress Function in SAS with the third Argument
02
How to use the compress function in a SAS macro?
How to use compress function in SAS?

Most SAS programmers depend on the COMPRESS function in SAS for cleaning up troublesome string data. The third ‘modifier’ argument, added in Version 9, might not be as acquainted.

If you’ve been programming in SAS® for any length of time, you’ve most likely used the COMPRESS function in SAS to clean up input data or extract a helpful tidbit from a string or variable name.

Unless you’re the kind of one who rigorously reads the documentation for each update or browses many convention papers, you won’t be aware of the hidden superpowers now you can use.

With Version 9, SAS added a 3rd “modifier” argument to the COMPRESS function– and it could do some superb “things”:

Compress Function in SAS with the third Argument

Most SAS programmers first learn the COMPRESS function when they need to remove extraneous spaces or different troublesome characters from strings.

We attempt to work with a string, find things we don’t need and remove “them”:

“Example”:

COMPRESS('SAS-is-wonderful&',ˈ-&ˈ)

This works until the subsequent data arrives with new extraneous characters and our code complains or crashes once more. We put further characters within the second “argument”:

“Example”:

COMPRESS('?SAS-is-wonderful&',ˈ-&?ˈ)

Now things run again. However, new data might introduce extra issues, and the cycle repeats….

If used correctly, the second argument in the Compress function can reduce this repeated modification. Various options cover entire classes of characters so that we can write generalised compression statements.

Using these options alone or with one another because the third argument generalises the conventional compress behaviour, that is, it removes the entire class from the string.

For instance, the code we had above could be generalised “as”:

COMPRESS('?SAS-is-wonderful&',ˈPˈ)

The P modifier removes all punctuation (observe missing the second argument)

You can use as many options as you want together. You can leave the second argument blank if the final option is adequate, or it’s also possible to include particular items within the second argument.

COMPRESS('?SAS-is-wonderful&',ˈ0ˈ,ˈAPˈ)

The A and P modifiers are used together that remove all punctuation, all alphabetic characters, and the digit “0.”

You can use as many options as you like in combination. You can leave the second argument blank if the general option is sufficient, or you can also include specific items in the second argument.

Below is the list of some modifiers you can use to expand the functionality of the compress function.

ArgumentMeaningExampleResults
ARemoves alphabetic characterscompress(‘A_B vC,Dm&@’,‘A’)
DRemoves digitscompress(‘A_B B5vC,Dm&@’,‘D’)
FRemoves the underscore character and English letterscompress(‘A_2B vC,Dm&@’,‘F’)
HRemoves horizontal tabcompress(‘A BvC,Dm&@’,‘H’)
Iignores the case of the characters to be kept or removed.compress(‘ABCcDcd’,‘cd’,‘I’)AB
KKeeps the characters in the list instead of removing them.compress(‘ABCcDcd’,‘cd’,‘K’)ccd
LRemoves lowercase letterscompress(‘ABCcDcd’,‘L’)ABCD
NRemoves digits, the underscore character, and English letterscompress(‘A_2B vC,Dm&@’,‘N’)
PRemoves punctuation markscompress(‘A_2B vC,Dm&@’,‘P’)
SRemoves space characters (blank, horizontal tab, vertical tab, carriage return, line feed, form feed, and NBSP (‘A0’x, or 160 decimal ASCII)compress(‘A_2B v C,Dm&@’,‘S’)
TTrims trailing blanks from the first and second arguments.compress(’ abcd’,‘T’)abcd
URemoves uppercase letterscompress(‘ABvC,Dm&&@@’,‘U’)
XRemoves hexadecimal characterscompress(‘ABvC,Dm&&@@’,‘X’)

“Read”: removing-dashes-and-parentheses-from-phone-numbers

How to use the compress function in a SAS macro?

You can use the compress function in a SAS macro by using %sysfunc. An example would be if you want to keep only digits in a macro variable, you can use the below line of code.

%let fname = 'JAN2020_012020';
%let onlydigits=%sysfunc(compress(&fname,kd));
%put `&onlydigits;`

Using the %CMPRES, %QCMPRES Autocall Macros

Two SAS Autocall macros can compress multiple blanks and remove leading and trailing blanks.

The CMPRES and QCMPRES macros compress multiple blanks and remove leading and trailing blanks.

If the argument might contain a special character or mnemonic operator listed below, use %QCMPRES.

& % ' " ( ) + − * / < > = ¬ ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN

CMPRES returns an unquoted result, even if the argument is quoted. QCMPRES produces a result with the following special characters and mnemonic operators masked, so the macro processor interprets them as text instead of as elements of the macro “language”:

%let a=15;
%let b=5;
%let sum=%nrstr(%eval(&a + &b));
%put "QCMPRES": %qcmpres(&sum);
%put "CMPRES": %cmpres(&sum);
"QCMPRES": %eval(&a + &b)
"CMPRES": 20

Tags

compress-function-in-sassas-character-functions

Share


Related Posts

How to use the SAS SCAN Function?
November 10, 2020
9 min
© 2025 9to5sas
AboutContactPrivacyTerms