I'd like to create a random string, consisting of alpha-numeric characters. I want to be able to be specify the length of the string.
How do I do this in C++?
|
|
|
Mehrdad Afshari's answer would do the trick, but I found it a bit too verbose for this simple task. Look-up tables can sometimes do wonders:
|
|||||||||||||||||||||
|
|
|||||||||||||
|
|
Here's my adaptation of Ates Goral's answer using C++11. I've added the lambda in here, but the principle is that you could pass it in and thereby control what characters your string contains:
Here is an example of passing in a lambda to the random string function: http://ideone.com/Ya8EKf Why would you use C++11? Because you could further refactor the code to produce strings that follow a certain probability distribution (or distribution combination) for the character set you're interested in. For example:
|
||||
|
|
|
I tend to always use the structured C++ ways for this kind of initialization. Notice that fundamentally, it's no different than Altan's solution. To a C++ programmer, it just expresses the intent a tad better and might be easier portable to other data types. In this instance, the C++ function
By the way, read Julienne’s essay on why this calculation of the index is preferred over simpler methods (like taking the modulus). |
|||
|
|
|
I just tested this, it works sweet and doesn't require a lookup table. rand_alnum() sort of forces out alphanumerics but because it selects 62 out of a possible 256 chars it isn't a big deal.
|
|||||
|
|
I've used the following in the past:
|
|||
|
|
|
Something even simpler and more basic in case you're happy for your string to contain any printable characters:
|
||||
|
|