Removing dashes and parentheses from phone numbers

Removing dashes and parentheses from phone numbers

Removing dashes and parentheses from phone numbers is one of the common data cleaning activities. This program uses the compress function to remove unwanted characters from a phone number.

data phone_number;
	input Phone $ 1-20;
	Phone_number=compress(Phone, , 'kd');
	datalines;
    (908)235-4490
    (201) 555-77 99
        ;
	title 'Removing dashes and parentheses from phone numbers';

proc print data=phone_number;
run;

The key to this program is the COMPRESS function with the two modifiers ‘k’ (keep) and ‘d’ (digits) as the third argument to the function.

The two modifiers k (keep) and d (digits) are used to keep all the digits in the PHONE value and remove everything else. Note that there are two commas following the first argument. If you used only one comma here, SAS would think you wanted to remove k’s and d’s from the PHONE value.

Removing dashes and parentheses from phone numbers

Every week we'll send you SAS tips and in-depth tutorials

JOIN OUR COMMUNITY OF SAS Programmers!

Subhro

Subhro provides valuable and informative content on SAS, offering a comprehensive understanding of SAS concepts. We have been creating SAS tutorials since 2019, and 9to5sas has become one of the leading free SAS resources available on the internet.