supersonic Posted September 16, 2009 Posted September 16, 2009 (edited) Hi, how to convert negative integers (-1, -535, -4567, ...) to positive integers? The only way I found is: $int = -1 Number(StringReplace(String($int), "-", "")) Is this the way to go? Greets, -supersonic. Edited September 16, 2009 by supersonic
LarryDalooza Posted September 16, 2009 Posted September 16, 2009 abs() AutoIt has helped make me wealthy
jvanegmond Posted September 16, 2009 Posted September 16, 2009 Abs() native function is of course the way to go. You don't need string operations, though, to do what you were trying to accomplish. Func _MakePositive($n) If ($n < 0) Then $n = $n * -1 Return $n EndFunc github.com/jvanegmond
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now