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 8508 Sep 27, 2001, 12:33 PM
Thread Re: [Canoon] Random Perl Global
Paul 8432 Sep 27, 2001, 1:02 PM
Thread Re: [RedRum] Random Perl Global
Canoon 8422 Sep 27, 2001, 1:10 PM
Post Re: [Canoon] Random Perl Global
Paul 8361 Sep 27, 2001, 1:14 PM
Thread Re: [Canoon] Random Perl Global
Paul 8374 Sep 27, 2001, 1:16 PM
Thread Re: [RedRum] Random Perl Global
Canoon 8415 Sep 27, 2001, 1:32 PM
Thread Re: [Canoon] Random Perl Global
Paul 8370 Sep 27, 2001, 1:35 PM
Post Re: [RedRum] Random Perl Global
Canoon 8359 Sep 27, 2001, 1:41 PM
Thread Re: [RedRum] Random Perl Global
Paul 8375 Sep 27, 2001, 1:52 PM
Thread Re: [RedRum] Random Perl Global
Canoon 8398 Sep 27, 2001, 1:57 PM
Thread Re: [Canoon] Random Perl Global
Alex 8362 Sep 27, 2001, 2:53 PM
Thread Re: [Alex] Random Perl Global
Canoon 8383 Sep 27, 2001, 3:06 PM
Thread Re: [Canoon] Random Perl Global
Alex 8347 Sep 27, 2001, 3:13 PM
Thread Re: [Alex] Random Perl Global
Canoon 8421 Sep 27, 2001, 3:21 PM
Thread Re: [Canoon] Random Perl Global
Alex 8369 Sep 27, 2001, 3:26 PM
Post Re: [Alex] Random Perl Global
Canoon 8335 Sep 27, 2001, 3:35 PM
Post Re: [Alex] Random Perl Global
Paul 8308 Sep 28, 2001, 3:49 AM
Post Re: [Alex] Random Perl Global
Sir Up 8203 May 24, 2002, 8:44 AM