About 210,000 results
Open links in new tab
  1. Generating random text strings of a given pattern

    Jan 7, 2013 · I need to generate random text strings of a particular format. Would like some ideas so that I can code it up in Python. The format is <8 digit number><15 character string>.

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

  3. 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): …

  4. How do you generate random strings in C++? - Stack Overflow

    Jan 27, 2010 · Boost.Random has a Mersenne twister generator. As sharptooth says, though (good spotting!), only seed the generator once, at the very start of your program. Seeding it …

  5. Make a random string in batch - Stack Overflow

    Jun 3, 2015 · I am trying to make a random string in batch, and I have no idea what to do. I have called a random string of numbers with the %random% function, but I have no idea how to …

  6. Generating random strings with T-SQL - Stack Overflow

    If you wanted to generate a pseudorandom alphanumeric string using T-SQL, how would you do it? How would you exclude characters like dollar signs, dashes, and slashes from it?

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

  8. Generate Random String in Postman - Stack Overflow

    Mar 18, 2022 · I'm new at postman an im trying to generate a random string with letters(A-Z) and numbers(0-9). The string should have 20 points. I don't know how to set the Body and the pre …

  9. How can I generate random alphanumeric strings?

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

  10. sql - TSQL Pseudo Random text generator - Stack Overflow

    Feb 27, 2014 · I am doing some performance testing on a SQL sproc and just want to bang out a quick data generator for testing. I am after a simple way to generate a pseudo random (true …