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;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1004 views
  • 4 likes
  • 4 in conversation