About 55,200 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. 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?

  3. 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?

  4. javascript - Random Letter Generator - Stack Overflow

    May 5, 2022 · I'm writing some code in JavaScript to generate a random mix of 6 letters from the alphabet using a Math.random method and a for-loop. I can get this to work when I write the …

  5. 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 …

  6. PHP random string generator - Stack Overflow

    With a secure integer generator in place, generating a random string with a CSPRNG is a walk in the park. Creating a Secure, Random String /** * Generate a random string, using a …

  7. 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 …

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

    Mar 5, 2011 · 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 …

  9. How can I generate random alphanumeric strings? - Stack Overflow

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

  10. Pick a random letter from string in JavaScript - Stack Overflow

    5 This question is different from Take random letters out from a string because I am not trying to remove anything from the string. I'm trying to pick a random letter from a string in JavaScript …