in reply to Random string generator
Fill @chars with what ever characters you want to be valid in your string.my @chars = ("A".."Z", "a".."z"); my $string; $string .= $chars[rand @chars] for 1..8;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Random string generator
by ibanix (Hermit) on Feb 06, 2003 at 02:06 UTC | |
by bart (Canon) on Feb 06, 2003 at 11:29 UTC |