Jump to content

Recommended Posts

Posted (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 by tom13
Posted (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 by tom13

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...