Jump to content

Recommended Posts

Posted (edited)

Just a quick question, Lets say i have this code

$Store = "Test "
$Store2 ="Test 2"
$Store3 = $Store + $Store2
ConsoleWrite($Store3)

How do i make it so $Store3 will output as "Test Test2" ?

Edited by IanN1990
Posted (edited)

$Store = "Test "

$Store2 ="Test 2"

$Store3 = $Store & $Store2 ; ampersand

ConsoleWrite($Store3)

Edited by forumer100

App: Au3toCmd              UDF: _SingleScript()                             

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...