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

I have a date which is "2006-07---" and i want to remove "---" as those are missing dates and make it to "2006-07".

 

any suggestion on how to do it. basically make these --- to iso date format

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data _null_;
x="2006-07---   ";
y=prxchange('s/\-+$//',1,strip(x));
put x= y=;
run;

View solution in original post

3 REPLIES 3
Reeza
Super User
- or x is the ISO 8601 standard to denote a missing component. Your data already uses the --.
http://support.sas.com/documentation/cdl/en/leforinforref/64790/HTML/default/viewer.htm#p1a0qt18rxyd...

Ksharp
Super User
data _null_;
x="2006-07---   ";
y=prxchange('s/\-+$//',1,strip(x));
put x= y=;
run;

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

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
  • 3 replies
  • 1688 views
  • 4 likes
  • 4 in conversation