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

Any help to remove 00 from the records below via proc sql? I want to display blanks if the records has multiple 00s without any alphabets

 

00,CQ,GC
00,RT,00,IR
00,00
RT,GT,KL
100,1000,00,RT

Excepted Result:

 

CQ,GC
RT,IR

RT,GT,KL
100,1000,RT
1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

I believe for your sample data the 2nd expression from the OR condition @FreelanceReinh proposes is sufficient. Because you wrote MULTIPLE and not EXACTLY TWO zeros I've also added a + (one or many) after the second zero.

select prxchange('s/\b00+\b,?//',-1,trim(c)) as c length=60

 

View solution in original post

2 REPLIES 2
FreelanceReinh
Jade | Level 19

Hello @Babloo,

 

Start with the Perl regular expression below ...

data have;
input c $char60.;
cards;
00,CQ,GC
00,RT,00,IR
00,00
RT,GT,KL
100,1000,00,RT
;

proc sql;
create table want as
select prxchange('s/,00\b|\b00\b,?//',-1,c) as c length=60
from have;
quit;

... and then modify it if necessary, e.g., to include space characters:

select prxchange('s/,\s*00\b\s*|\s*\b00\b,?\s*//',-1,c) as c length=60
Patrick
Opal | Level 21

I believe for your sample data the 2nd expression from the OR condition @FreelanceReinh proposes is sufficient. Because you wrote MULTIPLE and not EXACTLY TWO zeros I've also added a + (one or many) after the second zero.

select prxchange('s/\b00+\b,?//',-1,trim(c)) as c length=60

 

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
  • 2 replies
  • 388 views
  • 3 likes
  • 3 in conversation