Thread foreach mit großen und kleinen Chars (5 answers)
Opened by Gast at 2005-12-27 13:05

renee
 2005-12-27 16:54
#61386 #61386
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich wuerde hier zu einem Modul raten, und zwar zu CPAN:Math::Combinatorics...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
use Math::Combinatorics;

my @n = (a..z,A..Z);
my $combinat = Math::Combinatorics->new(count => 4,
data => [@n],
);

while(my @combo = $combinat->next_combination){
print join(' ', @combo)."\n";
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread foreach mit großen und kleinen Chars