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

Hi! I have a string like this one 'aaccbdaaaccc', and I need to find the character that occurs the most in consecutive order, and how many times it occurs. I thus need two variables as the output. I do not want to consider the caracter 'a'. The answer should be 'c' and '3'. Do anyone have a solution to this? Help is very much appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data _null_;
x='aaccbdaaaccc';
length str max_str  $ 200;
pid=prxparse('/(\w)\1*/');
start=1;
stop=length(x);
max_len=0;
call prxnext(pid,start,stop,x,p,l);
do while(p>0);
 str=substr(x,p,l);
 len=length(str);
 if str not =: 'a' and len gt max_len then do;
  max_str=str;
  max_len=len;
 end;
 call prxnext(pid,start,stop,x,p,l);
end;
putlog max_str= max_len= ;
run;

View solution in original post

4 REPLIES 4
Reeza
Super User

You've posted this in Enterprise Guide, are you using the query builder or familiar with SAS data steps?

ak2
Calcite | Level 5 ak2
Calcite | Level 5
I'm writing a data step.
Ksharp
Super User
data _null_;
x='aaccbdaaaccc';
length str max_str  $ 200;
pid=prxparse('/(\w)\1*/');
start=1;
stop=length(x);
max_len=0;
call prxnext(pid,start,stop,x,p,l);
do while(p>0);
 str=substr(x,p,l);
 len=length(str);
 if str not =: 'a' and len gt max_len then do;
  max_str=str;
  max_len=len;
 end;
 call prxnext(pid,start,stop,x,p,l);
end;
putlog max_str= max_len= ;
run;
ak2
Calcite | Level 5 ak2
Calcite | Level 5
This worked fine! Thank you so much for your help!

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 4 replies
  • 1293 views
  • 1 like
  • 3 in conversation