Aktonius 2 Posted July 26, 2011 Would you use $a = Number($string) + Number($string2) or $a = Execute($string+$string2) I have alot of the first case(using number) and wonder is it really worth it that i convert it to execute? Share this post Link to post Share on other sites
JoHanatCent 13 Posted July 26, 2011 Would you use $a = Number($string) + Number($string2) or $a = Execute($string+$string2)I have alot of the first case(using number) and wonder is it really worth it that i convert it to execute?$a = $string + $string2Unless it came from some strangly formatted source! Share this post Link to post Share on other sites
monoscout999 10 Posted July 26, 2011 autoit makes the convertion automaticly use the string $a = "50" $b = 5 $c = $a + $b consolewrite($c&@CRLF) doesn´t matter what type are. Share this post Link to post Share on other sites
Aktonius 2 Posted July 26, 2011 So what is the point of Execute then? Share this post Link to post Share on other sites
Jos 2,214 Posted July 26, 2011 So what is the point of Execute then?Think the Helpfile shows a pretty simple example to explain that...no? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
Aktonius 2 Posted July 27, 2011 Think the Helpfile shows a pretty simple example to explain that...no? I believe i am missing something since i dont see whats the diff from example: $a=1 $v=Execute("$a+1") ; $v is set to 2 with $v = $a + 1 ? Share this post Link to post Share on other sites