About 368,000 results
Open links in new tab
  1. c# - Random Word Generator #2 - Stack Overflow

    So I made a pretty simple word generator program in c# that works relatively well. It generates a word based on the length defined by the user. The algorithm adds a consonant and then a vowel for...

  2. How to generate random strings in Python? - Stack Overflow

    Mar 17, 2022 · How do you create a random string in Python? I need it to be number then character, repeating until the iteration is done. This is what I created: def random_id(length): number = …

  3. Random word generator- Python - Stack Overflow

    Using random.sample will provide you with a list of the total number of items (characters in this case) from the given object (a string object here) based on the number you want (random.sample …

  4. arrays - Generating random words in Java? - Stack Overflow

    If it helps, here's a list of every word in the Scrabble dictionary. Once you have a list of all words in a language, you can load those words into an ArrayList or other linear structure. You can then …

  5. How to generate random words in JavaScript? - Stack Overflow

    Possible Duplicate: Getting a random value from a JavaScript array OK, so I have three variables here, each being rock, paper or scissors. Using JavaScript, how can I generate one of those words

  6. How can I generate random words in PHP? - Stack Overflow

    Jul 25, 2010 · Could you maybe give us an example of what you're looking for? What is a "random word"? Is it a random collection of letters? Or do you want dictionary words? If the latter, you need to …

  7. generate random words from the list of words in c programming

    Aug 15, 2010 · 3 Put the words into an array. Generate 5 (or whatever) pseudo-random numbers in the right range (0..array_size-1). Use those numbers to pick words from the array.

  8. c# - Getting random words - Stack Overflow

    Mar 23, 2014 · I am looking to use randomly selected English words in my current C# project. One way I have thought of doing this is to access the following website and retrieve a randomly generated …

  9. Generating a list of random words in Excel, but no duplicates

    Jul 24, 2013 · Function GetText() Dim GivenWords GivenWords = Sheets(1).Range(Sheets(1).[a1], Sheets(1).[a20]) GetText = A(Application.RandBetween(1, UBound(A)), 1) End Function This …

  10. How do I generate a randomly selected word, or phrase, from a ...

    Apr 15, 2013 · Currently I am thinking of doing a Black Ops 2 load-out generator, and for that I need to generate random words in Javascript. I want to be able to generate a word, from a list of words. So if …