Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

There isn't much to add to the answers of @Phonon and @dantswain, except that the range of [a-Z],[A-Z] can be generated in less painful way, and randi can be used to create integer random values.

 symbols = ['a':'z' 'A':'Z' '0':'9'];
 MAX_ST_LENGTH = 50;
 stLength = randi(MAX_ST_LENGTH);
 nums = randi(numel(symbols),[1 stLength]);
 st = symbols (nums);
share|improve this answer

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) )
share|improve this answer
Thanks! Is there a nicer way to achieve this without the long string? – Cloud Harrison Jan 18 '12 at 22:16

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):

length = 10;
random_string = char(floor(94*rand(1, length)) + 32);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.