#!/usr/bin/perl -w use strict; use Data::Dumper; my @n = ('A' .. 'C'); my @all_string = get_char_comb(@n); print "There are: ",scalar(@all_string)," strings\n"; print Dumper \@all_string; sub get_char_comb { use Math::Combinatorics; my @alph = @_; my @all; foreach ( 0 .. $#alph+1 ) { my $combinat = Math::Combinatorics->new( count => $_, data => [@alph], ); while(my @permu = $combinat->next_combination) { push @all, join("",@permu); } } return @all; } #### $VAR1 = [ 'A', 'B', 'C', 'AB', 'AC', 'BC', 'ABC' ];