I want a 5 character string composed of characters picked randomly from the set [a-zA-Z0-9].
What's the best way to do this with Javascript?
|
I want a 5 character string composed of characters picked randomly from the set What's the best way to do this with Javascript? |
||||
|
|
|
I think this will work for you:
|
|||||||||||||||||
|
|
|||||||||||||||||||||
|
|
Something like this should work
Call with default charset [a-zA-Z0-9] or send in your own:
|
|||||
|
alert(randomstring(5)) |
|||
|
|
|
I know everyone has got it right already, but i felt like having a go at this one in the most lightweight way possible(light on code, not CPU):
It takes a bit of time to wrap your head around, but I think it really shows how awesome javascript's syntax is. |
|||||
|
|
You can loop through an array of items and recursively add them to a string variable, for instance if you wanted a random DNA sequence:
|
|||
|
|
This is as clean as it will get. It is fast too, http://jsperf.com/ay-random-string. |
||||
|
|
|
Generate 10 characters long string. Length is set by parameter (default 10).
|
||||
|
|
|
In case anyone is interested in a one-liner (although not formatted as such for your convenience) that allocates the memory at once (but note that for small strings it really does not matter) here is how to do it:
You can replace |
|||
|
|
|
This works for sure
|
|||
|
|
|
Expanding on Doubletap's elegant example by answering the issues Gertas and Dragon brought up. Simply add in a while loop to test for those rare null circumstances, and limit the characters to five.
Here's a jsfiddle alerting you with a result: http://jsfiddle.net/pLJJ7/ |
|||
|
|
will generate a random alpha-numeric string with the length of the first/calling string |
|||
|
|
|
Also based upon doubletap's answer, this one handles any length of random required characters (lower only), and keeps generating random numbers until enough characters have been collected.
|
|||
|
|