BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Smitha9
Fluorite | Level 6

Hi I want to delete the last digit and replace with 1

ID

000342

000562

001342

001452

000322

 

I want:

000341

000561

001341

001451

000321

 

thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Seems extremely trivial.  Are you sure that is what you want to do?  Perhaps your real data is more complex?

data want;
  set have;
  substr(id,length(id))='1';
run;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Seems extremely trivial.  Are you sure that is what you want to do?  Perhaps your real data is more complex?

data want;
  set have;
  substr(id,length(id))='1';
run;
ballardw
Super User

Assuming your variable is character this is one way:

 

data have;
  input id $;
datalines;
000342
000562
001342
001452
000322
;

data want;
   set have;
   id = cats(substr(id,1,length(id)-1),'1');
run;

@Smitha9 wrote:

Hi I want to delete the last digit and replace with 1

ID

000342

000562

001342

001452

000322

 

I want:

000341

000561

001341

001451

000321

 

thanks in advance.


 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

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