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

Say we have 4 letters--"A", "B","C","D". Now I want to get the combinations, the result should be 16 ELEMENTS.

AA
AB
AC
AD
BA
BB
BC
BD
CA
CB
CC
CD
DA
DB
DC
DD

Thank you.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Not sure what you're asking for. Is it something like:

 

data want (keep=first: second:);
  array first(16) $;
  array second(16) $;
  do i = 'A', 'B', 'C', 'D';
    do j = 'A', 'B', 'C', 'D';
      cell+1;
      first(cell)=i;
      second(cell)=j ;
    end;
  end;
run;  

Art, CEO, AnalystFinder.com

 

View solution in original post

5 REPLIES 5
collinelliot
Barite | Level 11
data want;
do i = 'A', 'B', 'C', 'D';
do j = 'A', 'B', 'C', 'D';
var = cats(i, j);
output;
end;
end;
run;
sas_newbie3
Obsidian | Level 7

Hi,

I want the result can be an arrary format, so I can retrieve the first element and second item etc.

So for example, for AA, it is an array. The first item of the array is A, the second item of array is A also.

collinelliot
Barite | Level 11

I'm really sorry, but I don't understand. The code I provided gives you the results you specified. The i and j give you the two separate portions, if that's what you mean. 

art297
Opal | Level 21

Not sure what you're asking for. Is it something like:

 

data want (keep=first: second:);
  array first(16) $;
  array second(16) $;
  do i = 'A', 'B', 'C', 'D';
    do j = 'A', 'B', 'C', 'D';
      cell+1;
      first(cell)=i;
      second(cell)=j ;
    end;
  end;
run;  

Art, CEO, AnalystFinder.com

 

ballardw
Super User

@sas_newbie3 wrote:

Hi,

I want the result can be an arrary format, so I can retrieve the first element and second item etc.

So for example, for AA, it is an array. The first item of the array is A, the second item of array is A also.


Then go back to your orginal post and change the "example" data to what you actually want. Your example implied one record per two character concatenated string.

 

And your description would result in 32 values not 16:

A,A,A,B,A,C,A,D,B,A,B,B,B,C,B,D,C,A,C,B,C,C,C,D,D,A,D,B,D,C,D,D

 

data junk;
   array x {32} $1.;
   counter=0;
   do i= 'A','B','C','D';
      do j= 'A','B','C','D';
         counter+1;
         x[counter]=i ;
         counter+1;
         x[counter]=j ;
      end;
   end;
   output;
   drop counter i j;
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 1122 views
  • 5 likes
  • 4 in conversation