Tagged Questions

2
votes
4answers
48 views

Octal to sign in string from array

Hi I want to convert octal sign like \46 to normal sign like &. The problem is that the input is created with preg_match_all(), put into an array and then retrieved. If I'd manually input the …
4
votes
3answers
175 views

Java int division confusing me.

I am doing very simple int division and I am getting odd results. This code prints 2 as expected: public static void main(String[] args) { int i = 200; int hundNum = i / 100; …
4
votes
4answers
340 views

Python: Invalid Token

Some of you may recognize this as Project Euler's problem number 11. The one with the grid. I'm trying to replicate the grid in a large multidimensional array, But it's giving me a syntax error and …
1
vote
7answers
84 views

strange behaviour on php

Can some one please tell me why I get odd results rurning the following code? <?php class Bank { var $ID; var $balance; var $name; function bank($name,$id,$balance=0) { …
1
vote
5answers
190 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 …
5
votes
5answers
781 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'); …
0
votes
5answers
1k views

floating point hex octal binary

Hi, I am working on a calculator that allows you to perform calculations past the decimal point in octal, hexadecimal, binary, and of course decimal. I am having trouble though finding a way to …
2
votes
3answers
309 views

What is the difference between a ‘character’ and an ‘octet’?

I see the term 'octet' popping up in literature about nonces for hashing, and it seems to be synonymous with 'character', although there is a kind of pattern to how the words are used. This leads me …
1
vote
1answer
186 views

AJAX Asp.net AutoCompleteExtender interpreting string 0010 as octal

I'm using the MS AJAX AutoCompleteExtender on a textbox. It's working fine, except when the web service returns strings like "0010" -- in which case, it displays "8". I eventually realised it was …