Vladi243 Posted May 26, 2008 Posted May 26, 2008 I found this topic by search.There is this script $string="a,b,c,d" $Array=StringSplit($string,",") $i=Random(0,UBound($Array)-1,1) MsgBox(0,"Random",$Array[$i])It's generates a random letter (a/b/c/d). The problem is that sometimes it generates the number "4". Why?Can you give me better script for generating random word?
monoceres Posted May 26, 2008 Posted May 26, 2008 I found this topic by search. There is this script $string="a,b,c,d" $Array=StringSplit($string,",") $i=Random(0,UBound($Array)-1,1) MsgBox(0,"Random",$Array[$i]) It's generates a random letter (a/b/c/d). The problem is that sometimes it generates the number "4". Why? Can you give me better script for generating random word?Because the person who wrote forgot that the first element in the array returned by StringSplit is in fact the count of elements in the array. Just change Random(0...... to Random(1.... Broken link? PM me and I'll send you the file!
DMEE Posted May 26, 2008 Posted May 26, 2008 From the help file: ;Random letter If Random() < 0.5 Then ;Capitals $Letter = Chr(Random(Asc("A"), Asc("Z"), 1)) Else ;Lower case $Letter = Chr(Random(Asc("a"), Asc("z"), 1)) Endif In the beginning there was nothing and then even that exploded - anonymous
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now