“Kotlin obtenir une chaîne aléatoire” Réponses codées

Générateur de cordes aléatoire Kotlin

private fun randomID(): String = List(16) {
  (('a'..'z') + ('A'..'Z') + ('0'..'9')).random()
}.joinToString("")
Expensive Eel

Kotlin obtenir une chaîne aléatoire

fun randomString(length: Int): String = List(length) {
	(32..126).random().toChar()
}.joinToString("")
dex!?

Kotlin obtient un caractère aléatoire

fun randomChar(): Char = (32..126).random().toChar()
dex!?

Réponses similaires à “Kotlin obtenir une chaîne aléatoire”

Questions similaires à “Kotlin obtenir une chaîne aléatoire”

Plus de réponses similaires à “Kotlin obtenir une chaîne aléatoire” dans Kotlin

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code