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
Opal | Level 21

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
Opal | Level 21

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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 675 views
  • 0 likes
  • 3 in conversation