I have a char array that starts with zeroes, but when I try to convert it to a int value, it deletes the zeroes, so I want to keep the zeroes as well.
Something like this array char contains 00001234 and the int has to be like this 00001234, but when I use the parseInt it just leaves me 1234.