Jump to content

Recommended Posts

Posted

Hi , I have a problem. I am working with autoit 3 and I don`t know how to save in one variabile some vectors.

variabiles is used as character

I need help , the structure is

------------

$n=12

for $i=1 to $n

$char = $char + $v[$i]

next

------------

Advanced thank`s you!!!

Posted (edited)

You should define initial value for $char.

$n=12
$char = ""
for $i=1 to $n
$char = $char & $v[$i]
next

If $v is string you must replace + with &

Edited by Andreik

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
×
×
  • Create New...