Thread Zufallsfunktion im Script (12 answers)
Opened by Compined at 2011-10-11 00:18

pq
 2011-10-11 00:33
#153044 #153044
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
also wenn es nicht allzu viele datensätze sind und du sie in einem array hast:
Code (perl): (dl )
1
2
my @data = ...;
my $selected = $data[ rand @data ];

wählt zufällig ein element aus @data aus.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Zufallsfunktion im Script