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.
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;
You've posted this in Enterprise Guide, are you using the query builder or familiar with SAS data steps?
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.