Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Canoon] Random Perl Global

Quote Reply
Re: [Canoon] Random Perl Global In reply to
Try:

random =>
Code:
sub {
my @random = (0 .. 9, 'a' .. 'z', 'A' .. 'Z');
my $rand = '';
for (1 .. 8) {
$rand .= $random[rand @random];
}
return $rand;
}

Cheers,

Alex
--
Gossamer Threads Inc.

Last edited by:

Alex: Sep 27, 2001, 3:25 PM
Subject Author Views Date
Thread Random Perl Global Canoon 7451 Sep 27, 2001, 12:33 PM
Thread Re: [Canoon] Random Perl Global
Paul 7387 Sep 27, 2001, 1:02 PM
Thread Re: [RedRum] Random Perl Global
Canoon 7380 Sep 27, 2001, 1:10 PM
Post Re: [Canoon] Random Perl Global
Paul 7328 Sep 27, 2001, 1:14 PM
Thread Re: [Canoon] Random Perl Global
Paul 7332 Sep 27, 2001, 1:16 PM
Thread Re: [RedRum] Random Perl Global
Canoon 7373 Sep 27, 2001, 1:32 PM
Thread Re: [Canoon] Random Perl Global
Paul 7327 Sep 27, 2001, 1:35 PM
Post Re: [RedRum] Random Perl Global
Canoon 7326 Sep 27, 2001, 1:41 PM
Thread Re: [RedRum] Random Perl Global
Paul 7333 Sep 27, 2001, 1:52 PM
Thread Re: [RedRum] Random Perl Global
Canoon 7362 Sep 27, 2001, 1:57 PM
Thread Re: [Canoon] Random Perl Global
Alex 7317 Sep 27, 2001, 2:53 PM
Thread Re: [Alex] Random Perl Global
Canoon 7342 Sep 27, 2001, 3:06 PM
Thread Re: [Canoon] Random Perl Global
Alex 7306 Sep 27, 2001, 3:13 PM
Thread Re: [Alex] Random Perl Global
Canoon 7374 Sep 27, 2001, 3:21 PM
Thread Re: [Canoon] Random Perl Global
Alex 7326 Sep 27, 2001, 3:26 PM
Post Re: [Alex] Random Perl Global
Canoon 7295 Sep 27, 2001, 3:35 PM
Post Re: [Alex] Random Perl Global
Paul 7272 Sep 28, 2001, 3:49 AM
Post Re: [Alex] Random Perl Global
Sir Up 7170 May 24, 2002, 8:44 AM