About 18,900 results
Open links in new tab
  1. Generate a random letter in Python - Stack Overflow

    Is there a way to generate random letters in Python (like random.randint but for letters)? The range functionality of random.randint would be nice but having a generator that just outputs a …

  2. Is there functionality to generate a random character in Java?

    Apr 13, 2010 · Does Java have any functionality to generate random characters or strings? Or must one simply pick a random integer and convert that integer's ASCII code to a character?

  3. Generate a string of random characters

    I want a string of fixed length, composed of characters picked randomly from a set of characters e.g. [a-zA-Z0-9]. How can I do this with JavaScript?

  4. arrays - How to select random letters in c++ - Stack Overflow

    C++ mandates that digits be contiguous in the execution charset, but letters aren't necessarily. You may find it easier to define a char array with all the valid characters you want to choose …

  5. How can I generate random alphanumeric strings?

    Aug 28, 2009 · How can I generate a random 8 character alphanumeric string in C#?

  6. random - In Java how do you randomly select a letter (a-z)? - Stack ...

    So, you can take a random number from 0 to 26, add it to the character 'a', and here you are : random letter. You could also do it with a string, typing "abcdefghijklmnopqrstuvwxyz" and …

  7. How to generate a random, unique, alphanumeric string?

    Dec 6, 2016 · How would it be possible to generate a random, unique string using numbers and letters for use in a verify link? Like when you create an account on a website, and it sends you …

  8. PHP random string generator - Stack Overflow

    Safely generating random integers in PHP isn't a trivial task. You should always check with your resident StackExchange cryptography experts before you deploy a home-grown algorithm in …

  9. How to generate a random alphanumeric string with a formula in …

    Dec 5, 2022 · I'm trying to generate a random 8 character alphanumeric string in Excel (or Google Sheets or Libreoffice, which both have the same challenge) using a formula. I'd like to get …

  10. php - Generate random 5 characters string - Stack Overflow

    I want to create exact 5 random characters string with least possibility of getting duplicated. What would be the best way to do it? Thanks.