Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Random string generator

by t'mo (Pilgrim)
on Feb 06, 2003 at 15:58 UTC ( [id://233165]=note: print w/replies, xml ) Need Help??


in reply to Random string generator

Thanks to jmcnamara, we have this example:

perl -le 'print map{(a..z)[rand 26]} 0..rand 10'

which I have extended thusly:

perl -le 'print map{(a..z,A..Z,0..9)[rand 62]} 0..7'

and which you could extend as needed.

Replies are listed 'Best First'.
Re^2: Random string generator
by glenn (Scribe) on Mar 11, 2016 at 15:11 UTC
    For use in a function which is much easier to remember.
    print randStr(8)."\n"; sub randStr { return join('', map{('a'..'z','A'..'Z',0..9)[rand 62]} 0..shift); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://233165]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-19 09:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found