About 8,270,000 results
Open links in new tab
  1. Generate a string of random characters - Stack Overflow

    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?

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

  3. Producing ascii art via C# - Stack Overflow

    Jul 8, 2020 · After some research I found out that the best way to do it is this: 1. go to Text to ASCII Art Generator (TAAG). 2. type your text. 3. Change the settings to make the text look …

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

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

  6. python - Print full ascii art - Stack Overflow

    May 13, 2014 · print() function expects a text, not bytes (unrelated: to print bytes, you could use sys.stdout.buffer.write(some_bytes)) how bytes are interpreted as a text is the property of your …

  7. Generate Ascii art text in C - Stack Overflow

    Dec 21, 2011 · I am trying to generate ascii art text for a fun application. From FIGLET, I got the ASCII pattern. I am using that pattern in a printf statement to print letters. Here is a screenshot …

  8. cmd - How do I echo ASCII art that contains special characters in a ...

    However, when using echo not all special batch characters need to be escaped, as some as interpreted as text. The ones you still need to escape, and how to escape them, are:

  9. python - How to print a generator expression? - Stack Overflow

    list( generator-expression ) isn't printing the generator expression; it is generating a list (and then printing it in an interactive shell). Instead of generating a list, in Python 3, you could splat the …

  10. python - How to make an text generator - Stack Overflow

    Feb 6, 2022 · I been stuck in this line of code trying to make a text generator that generates a random text with a vocabulary, like I'm trying to make a code that generates text ...