SAS : Extracting numbers and text from alphanumeric string

Deepanshu Bhalla 2 Comments
Suppose you wish to extract numbers and text from alphanumeric string in SAS. It is a common data manipulation task in retail and ecommerce industry. Many times numerical value in Product ID refers to a sub-product category. It's not easy to crack this puzzle as it requires a good knowledge of SAS functions. In SAS, you can use COMPRESS function to accomplish this task.

Let's create sample data

The following SAS program creates sample data which would be used further.
data abc;
input a $;
cards;
BA231
CDA224
744BAS
;
run;
data abc1;
set abc;
b = compress(a,'','A');
c = compress(a, b);

run; 
Output

Compress : Extract Numbers and Text

Variable "b" contains numeric values and variable "c" contains characters.

COMPRESS Function
It returns a character string with specified characters removed from the original string.
Syntax

COMPRESS(string, characters_to_be_removed, modifier)

  1. In the above example, compress(a, '' , 'A') uses 'A' as modifier which means removing alphabetic characters from the original string.
  2. The second compress function eliminates numeric values which are stored in variable b.
Related Posts
Spread the Word!
Share
About Author:
Deepanshu Bhalla

Deepanshu founded ListenData with a simple objective - Make analytics easy to understand and follow. He has over 10 years of experience in data science. During his tenure, he worked with global clients in various domains like Banking, Insurance, Private Equity, Telecom and HR.

2 Responses to "SAS : Extracting numbers and text from alphanumeric string"
  1. Didnt understand comment function. plz explain

    ReplyDelete
  2. Didnt understand *compress function. plz explain

    ReplyDelete
Next → ← Prev