BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
altijani
Quartz | Level 8

Greetings Community

 

I have a column in my dataset that has multiple leading spaces. In case that the observation has THREE leading spaces, I want to drop that observation. Otherwise, keep. Here is what I have:

IDAddress
11650 OCEAN PKWY
2   1651 SEA PKWY
3 1652 RIVER PKWY

 

Here is what I need:

IDAddress
11650 OCEAN PKWY
3 1652 RIVER PKWY

 

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Or

data want;
set have;
if  address=:'  ' then delete;
run;

The =: is a "begins with"

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20
data have;
infile cards ;
input ID +2	Address $char30.;
cards;
1  	1650 OCEAN PKWY
2	   1651 SEA PKWY
3	 1652 RIVER PKWY
;


data want;
set have;
if  substr(address,1,3)='  ' then delete;
run;
ballardw
Super User

Or

data want;
set have;
if  address=:'  ' then delete;
run;

The =: is a "begins with"

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 711 views
  • 1 like
  • 3 in conversation