Jump to content

Recommended Posts

Posted

Ok, i want to put som text and variables in a variable. I tested the PHP way:

$var = "text" . $var2 . "moretext" . $var3

But that didn't work. How can i do this?

Posted

AU does not use . as the add symbol like in PHP. Instead, it is the & symbol. A little more intuitive than with PHP in my opinion. Check through the helpfile and you'll find great examples.

A decision is a powerful thing
Posted

AU does not use . as the add symbol like in PHP. Instead, it is the & symbol. A little more intuitive than with PHP in my opinion. Check through the helpfile and you'll find great examples.

Thx, can i use the \" things like in PHP?

Posted

Look in Macro Reference AutoIt-related Macros

@CR

Carriage return, Chr(13); sometimes used for line breaks.

@LF

Line feed, Chr(10); typically used for line breaks.

@CRLF

= @CR & @LF ;occasionally used for line breaks.

@TAB

Tab character, Chr(9)

A decision is a powerful thing

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