Tagged Questions
The zero-pad tag has no wiki summary.
98
votes
7answers
75k views
Left padding integers with zeros in Java
How do you left pad an int with zeros in java when converting to a string?
I'm basically looking to pad out integers up to 9999 with the leading zeros.
E.g. 1 = "0001"
I know this is probably ...
15
votes
11answers
6k views
How can I count the digits in an integer without a string cast?
I fear there's a simple and obvious answer to this question. I need to determine how many digits wide a count of items is, so that I can pad each item number with the minimum number of leading zeros ...
4
votes
4answers
5k views
In PHP, how do I add to a zero-padded numeric string and preserve the zero padding?
If I have a variable in PHP containing 0001 and I add 1 to it, the result is 2 instead of 0002. How do I solve this problem?
3
votes
3answers
5k views
Zero-pad digits in string
I need to cast single figures (1 to 9) to (01 to 09). I can think of a way but its big and ugly and cumbersome. I'm sure there must be some concise way. Any Suggestions
2
votes
2answers
575 views
Zero-padding a spinner in Java
How do you add zero padding to a JSpinner?
Since the spinner creates the JFormattedTextField itself, I can't just pass the format into the JFormattedTextField constructor.
Isn't there a way to set the ...
1
vote
1answer
96 views
Java convert any integer to 4 digits
This seems like an easy question. One of my assignments basically sends a time in military format (like 1200, 2200, etc) to my class.
How can I force the integer to be converted to 4 digits when ...
1
vote
2answers
431 views
How can I compare two images to detect duplicates and cropped duplicates?
How can I compare two images and determine if they are 100% similar, or only altered in color, or cropping?
0
votes
5answers
83 views
randint with leading zero's
I want to generate numbers from 00000 to 99999.
with
number=randint(0,99999)
I only generate values without leading zero's, of course, a 23 instead of a 00023.
Is there a trick to generate always ...
0
votes
3answers
614 views
Ruby String pad zero OPE ID
I'm working with OPE IDs. One file has them with two trailing zeros, e.g., [998700, 1001900]. The other file has them with one or two leading zeros for a total length of six, e.g., [009987, 010019]. I ...