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

Hello,

 

I have a dataset with a bunch of addresses, unfortunately they are all combined into one line and I need to parse out everything that comes after the person's name into one line.

 

Data that I have:

 

id         Name               address_line                                              city_state         zipcode

1          John Doe          john doe 123 Central Avenue                 New York, NY    12345

 

Data I want:

id         Name               address_line_1                                          city_state         zipcode

1          John Doe         123 Central Avenue                                 New York, NY    12345

 

 

I know I probably have to use index and substring or some combination of those, but I really have no idea where to start.

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

That looks like the right set of tools, but I think you are looking for this:

 

address_line_1 = substr(address_line, length(name) + 2);

View solution in original post

2 REPLIES 2
Reeza
Super User

Use the length of name as the second argument to substr function. It tells it where to start the substr and leaving out the third parameter tells it to take the rest of the string. 

 

Address = substr(address_line1, length(name));
Astounding
PROC Star

That looks like the right set of tools, but I think you are looking for this:

 

address_line_1 = substr(address_line, length(name) + 2);

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 1020 views
  • 0 likes
  • 3 in conversation