“Générer une chaîne aléatoire” Réponses codées

générer un python de chaîne aléatoire

import string
import random

length=5
#python2
randomstr = ''.join(random.sample(string.ascii_letters+string.digits,length))


#python3
randomstr = ''.join(random.choices(string.ascii_letters+string.digits,k=length))

                                  
Worrisome Wallaby

générer une chaîne aléatoire en java

import java.util.Random;

public class Generator {
	public static String generateRandomPassword(int len) {
		String chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijk"
          +"lmnopqrstuvwxyz!@#$%&";
		Random rnd = new Random();
		StringBuilder sb = new StringBuilder(len);
		for (int i = 0; i < len; i++)
			sb.append(chars.charAt(rnd.nextInt(chars.length())));
		return sb.toString();
	}
}
Vishal

Générer une chaîne aléatoire

private static Random random = new Random();
public static string RandomString(int length)
{
    const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    return new string(Enumerable.Repeat(chars, length)
      .Select(s => s[random.Next(s.Length)]).ToArray());
}
Excited Echidna

Corde aléatoire

private static Random random = new Random();

public static string RandomString(int length)
{
    const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    return new string(Enumerable.Repeat(chars, length)
        .Select(s => s[random.Next(s.Length)]).ToArray());
}
PrashantUnity

Python génère une chaîne aléatoire

''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))
Strange Salmon

Générer une chaîne aléatoire

Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
Chinanu Prince

Réponses similaires à “Générer une chaîne aléatoire”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code