tom13 Posted May 19, 2008 Posted May 19, 2008 (edited) Hi there, I made this little test script to multiply a letter (A) 5 times. So, when string is A it should return AAAAA. $string = "A" $i = 1 $max = 5 While $i <= $max $i = $i + 1 $string = $string & $string WEnd MsgBox(0, "", $string) ClipPut($string) However, it returns "AAAAAAAAAAAAAAAA". Isn't that strange? It should return "AAAAA"? Edited May 19, 2008 by tom13
tom13 Posted May 19, 2008 Author Posted May 19, 2008 (edited) Edit: NVM.. Fixed.. $string = "A" $string_add = $string $i = 1 $max = 5 Do $i = $i + 1 $string = $string & $string_add Until $i >= $max MsgBox(0, "", $string) ClipPut($string) Edited May 19, 2008 by tom13
weaponx Posted May 19, 2008 Posted May 19, 2008 Erm.. something happend to my characters? o.OUse code tags instead of autoit tags.
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