SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Lost_Gary
Quartz | Level 8

This might be easy, but I keep getting hung up on this.  I am trying to replace a space with a dash within an address field.  For instance, the address is listed as 12 345 main street.  I am trying to get it to add a dash, but only in the first space i.e. 12-345 main street.  

 

I appreciate the assistance.

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
 
data w;
k='12 345 main street.';
substr(k,index(k,' '),1)='-';
run;

View solution in original post

5 REPLIES 5
novinosrin
Tourmaline | Level 20
 
data w;
k='12 345 main street.';
substr(k,index(k,' '),1)='-';
run;
Lost_Gary
Quartz | Level 8

Brilliant.  Thank you.  

art297
Opal | Level 21

While you've marked this question as solved, unless all of your addresses have that pattern of numbers, I think you will be exchanging a number of spaces for hyphens where you don't really want to.

 

I'd suggest using pattern matching. E.g.,

data have;
  address='12 345 main street.';
  output;
  address='345 main street.';
  output;
run;

data want;
  set have;
  address = prxchange('s/(\d+) (\d+)/$1-$2/', -1, address);
run;

Art, CEO, AnalystFinder.com

 

Lost_Gary
Quartz | Level 8

ooh, I like the efficiency in that coding and also learning different ways.  So a thumbs up for this method as well.  

 

The problem with addresses that I am finding, is the scenario of the address '345 1st avenue' as '345-1st avenue' would be inaccurate (for this scenario).  So, my less than efficient solution was to create different 'rules' to isolate the scenarios in which the 'substr' function works better to replace some of the spaces.  I know what i am doing isn't perfect.  

art297
Opal | Level 21

Precisely why I suggested using pattern matching. That one is easy to correct:

 

data have;
  address='12 345 main street.';
  output;
  address='345 main street.';
  output;
  address='345 1st avenue';
  output;
run;

data want;
  set have;
  address = prxchange('s/(\d+) (\d+) /$1-$2 /', -1, address);
run;

Art, CEO, AnalystFinder.com

 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 5 replies
  • 3689 views
  • 0 likes
  • 3 in conversation