84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
需要得到一个大小写混合的字符串[a,A-Z,z],目前用的方法是
value = ""; 12.times{value << ((rand(2)==1?65:97) + rand(26)).chr}
感觉还是不好,而且再加混合数字的串就不会了。不知道有没有更好的方法,烦请详细指点!
小伙看你根骨奇佳,潜力无限,来学PHP伐。
(0...50).map{ ('a'..'z').to_a[rand(26)] }.join
Ce qui suit est plus efficace : o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a} .aplatir ;o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a}.flatten; string = (0...50).map{ o[rand(o.length)] }.join; string = (0...50).map{ o[rand(o.length)] }.join;
o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a} .aplatir ;o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a}.flatten; string = (0...50).map{ o[rand(o.length)] }.join; string = (0...50).map{ o[rand(o.length)] }.join;
o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a}.flatten; string = (0...50).map{ o[rand(o.length)] }.join;
Ajoutez-en un de plus pour l'affiche au choix : rand(36 ** n).to_s(36) n est la longueur de la chaîne générée
rand(36 ** n).to_s(36)
[*('a'..'z'),*('A'..'Z'),*(0..9)].shuffle[0..9].join
(0...50).map{ ('a'..'z').to_a[rand(26)] }.join
Ce qui suit est plus efficace :
o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a} .aplatir ;
o = [('a'..'z'),('A'..'Z')].map{|i| i.to_a}.flatten;
string = (0...50).map{ o[rand(o.length)] }.join;string = (0...50).map{ o[rand(o.length)] }.join;
Ajoutez-en un de plus pour l'affiche au choix :
rand(36 ** n).to_s(36)
n est la longueur de la chaîne générée
[*('a'..'z'),*('A'..'Z'),*(0..9)].shuffle[0..9].join