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

Is there any function or something like that by which I can create totally random strings or numbers?

share|improve this question

2 Answers

up vote 7 down vote accepted

You can create random numbers using qrand. If you need strings, you can convert the int to string. You could also check the QUuid class, which generates Universally Unique Identifiers. Those are not 'totally random', but they are unique.

share|improve this answer
thx. :) that worked! – oDx Jul 14 '10 at 11:13
int number;
int randomValue = qrand() % number;

returns a random number a, 0 <= a < number. qrand function is declared in QtGlobal which is included many other Qt files.

int value;
QString aString=QString::number(value);

converts an integer to QString.

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.