I want to create a string with random length and random characters, only [a-z][A-Z] and numbers. Is there something built in?
Thanks in advance.
|
|
|
There isn't much to add to the answers of @Phonon and @dantswain, except that the range of
|
||||
|
|
|
This should work s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; %find number of random characters to choose from numRands = length(s); %specify length of random string to generate sLength = 50; %generate random string randString = s( round(rand(1,sLength)*numRands) ) |
|||
|
|
I started to write this before I realized you wanted [A-Z][a-z] and [0-9]. For that, @Phonon's answer is good. Just as an alternative, this will generate random ASCII characters in the full range of readable characters from space (32) to tilde (126):
|
|||
|
|