Tagged Questions

56
votes
8answers
10k views

Workarounds for JavaScript parseInt octal bug

Try executing the following in JavaScript: parseInt('01'); //equals 1 parseInt('02'); //equals 2 parseInt('03'); //equals 3 parseInt('04'); //equals 4 parseInt('05'); //equals 5 parseInt('06'); ...
2
votes
5answers
1k views

Handling numbers with leading zeros in Tcl

I am having trouble in Tcl using numbers with leading zeros. I am parsing some numbers that can have leading zeros, such as "0012", which should be interpreted as the integer "twelve". $ tclsh % set ...
2
votes
5answers
181 views

How does Casting work in PHP?

What doesn't this work: (int)08 == (int)09==0 But this and this does? (int)07==7 (int)06==6
1
vote
2answers
50 views

Reliable integer typecasting

I'm working on a data validator package for PHP (mostly as an exercise in some of the new additions in 5.3 such as namespaces). I'm planning to have a main validator class which uses plugin classes ...
1
vote
3answers
119 views

Leading and Trailing '0' gives error

random.randint(50,9) or random.randint(5,09) give errors, although just random.randint(5,9) ..works! Leading and trailing zero's aren't allowed in python without converting it to string or ...
1
vote
5answers
646 views

09 is not recognized where as 9 is recognized

I am using quartz for schedulling. TriggerUtils.getDateOf(0,40,18,09,06); it accept 5 parameter. (seconds, minutes, hours, daysOfMonth, month). When i pass fourth parameter as "09". Eclipse give me ...