vote up 3 vote down star
1

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++?

flag

6 Answers

vote up 21 vote down check

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:

void gen_random(char *s, const int len) {
    static const char alphanum[] =
        "0123456789"
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        "abcdefghijklmnopqrstuvwxyz";

    for (int i = 0; i < len; ++i) {
        s[i] = alphanum[rand() % (sizeof(alphanum) - 1)];
    }

    s[len] = 0;
}
link|flag
Nice. I wanted to mention this in a comment. This approach works better if, like this example, the count of elements is small. The drawback is it doesn't scale well if you wanted to generate random numbers from large distinct continues sets. – Mehrdad Afshari Jan 13 at 18:44
I like this answer better. It's more flexible, because you can eliminate characters easily. For example, making a random alphanumeric string without the character I would be trivial in this function. It is also easier to understand, in my opinion. – William Brendel Jan 13 at 18:48
+1, This way you can add certain special char without having to worry about the entire set. Much better. – WolfmanDragon Jan 13 at 18:49
Mehrdad, why does it not scale? an array of char is an array of char wherever it is digits or alphabet. This is not creating random ints or floats but chars. – WolfmanDragon Jan 13 at 18:54
1  
You probably don't want to use a simple rand() with modulus. See: c-faq.com/lib/randrange.html – Randy Proctor May 15 at 13:02
show 11 more comments
vote up 2 vote down

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.

#include <cstdlib>   // for rand()
#include <cctype>    // for isalnum()   
#include <algorithm> // for back_inserter
#include <string>

char 
rand_alnum()
{
    char c;
    while (!std::isalnum(c = static_cast<char>(std::rand())))
        ;
    return c;
}


std::string 
rand_alnum_str (std::string::size_type sz)
{
    std::string s;
    s.reserve  (sz);
    generate_n (std::back_inserter(s), sz, rand_alnum);
    return s;
}
link|flag
vote up 2 vote down

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 generate_n expresses exactly what you want:

struct rnd_gen {
    rnd_gen(char const* range = "abcdefghijklmnopqrstuvwxyz0123456789")
        : range(range), len(std::strlen(range)) { }

    char operator ()() const {
        return range[static_cast<std::size_t>(std::rand() * (1.0 / (RAND_MAX + 1.0 )) * len)];
    }
private:
    char const* range;
    std::size_t len;
};

std::generate_n(s, len, rnd_gen());
s[len] = '\0';

By the way, read Julienne’s essay on why this calculation of the index is preferred over simpler methods (like taking the modulus).

link|flag
vote up -1 vote down

why dont you just read from /dev/random ?

link|flag
Is that stream alpha numeric? – jm Jan 13 at 18:38
because /dev/random doesn't exist in windows?? – Kibbee Jan 13 at 18:38
"Because im a windows fanboy" - Kibbee – theman_on_vista Jan 13 at 19:36
+1 , for continuous stream of random chars 30 char strings, dd if=/dev/urandom | psed 's/[^A-Za-z0-9]//g' | pcregrep '^[\w\d]{30}$' – Kent Fredric Jan 13 at 20:51
vote up -3 vote down

Could you generate GUID's from the built in function(s) and then just trim off the length you need?

link|flag
C++ (the language) doesn't have any built-in functions that generate GUIDs -- but there are libraries that do that. – Ates Goral Jan 13 at 18:34
GUIDs contain only hexadecimal characters (0-9, A-F), while the original question asked for alphanumeric. – Greg Hewgill Jan 13 at 18:46
I don't think GUID's are all that random. Some of the string is fixed per machine, right? – jm Jan 13 at 23:33
vote up 6 vote down
 void gen_random(char *s, const int len) {
     for (int i = 0; i < len; ++i) {
         int randomChar = rand()%(26+26+10);
         if (randomChar < 26)
             s[i] = 'a' + randomChar;
         else if (randomChar < 26+26)
             s[i] = 'A' + randomChar - 26;
         else
             s[i] = '0' + randomChar - 26 - 26;
     }
     s[len] = 0;
 }
link|flag
Nice: this is independent of character set (at least for all character sets that have a..z,A..Z, and 0..9 continguous). – dmckee Jan 13 at 18:39
@dmckee: true, but what other character sets are those? (EBCDIC doesn't have contiguous letters). – Greg Hewgill Jan 13 at 18:44
Um. I guess I'm caught out. I was just parroting something a professor said to me once... – dmckee Jan 13 at 18:49
A quick check of the standard shows no such continuity requirements in section 2.2, where I'd expect them. – David Thornley Jan 13 at 20:50
0..9 are required to be contiguous, though. no section number, but i'm sure about this. – Johannes Schaub - litb Jan 14 at 4:43
show 1 more comment

Your Answer

Get an OpenID
or

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