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.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This Post Has 3 Comments

  1. isidro

    My spouse and I stumbled over here coming from a different website and thought
    I might check things out. I like what I see so now i am following you.
    Look forward to exploring your web page yet again.

  2. kavin

    Hi i am kavin, its my first time to commenting anywhere, when i read this post i thought i could also create comment due to this sensible piece
    of writing.

  3. willywomack

    Appreciate the recommendation. Let me try it out.