04.07.2014, 16:48
Whenever I try to convert some numerical values stored in a string to an Integer using strval, the output is totally different from the actual numerical values stored withing a string.
Example:
Input:
new string[128]=114105116116105107;
new bug = strval(string);
Output:
-1591232621
So, the output is totally different and it's a negative value.
Example:
Input:
new string[128]=114105116116105107;
new bug = strval(string);
Output:
-1591232621
So, the output is totally different and it's a negative value.