Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase number with character in Java

Tags:

java

java-8

I have a problem with increasing number and character combinations. What I want is increase from 001 to ZZZ

Example: 001, 002,..., 999, 00A,..., 00Z, 0AA,..., ZZZ

My code look like this:

int numberA = 1000;
int numberB = 1024;
int numberC = 1025;

/*
 * Some formulae here
 */

System.out.println(numberA);
//Result: 00A
System.out.println(numberB);
//Result: 00Z
System.out.println(numberC);
//Result: 0A0

Are there any fomulae to solve this problem?

like image 231
th3l0n3r4n93r Avatar asked Sep 20 '26 23:09

th3l0n3r4n93r


2 Answers

Maybe the following will help you get started ;-)

final Integer radix = 36; // that's 0-9 A-Z
final Double limit = Math.pow(radix.doubleValue(), 3.0 /* max number of 'chars' */);
Stream.iterate(0, i -> i+1)
        .map(i -> Integer.toString(i, radix))
        .map(s -> String.format("000%S", s)
                        .substring(s.length())) // leading 0, uppercase
        .limit(limit.longValue())
        .forEach(System.out::println);

Or simply:

String radix36 = Integer.toString(yourIntThatYouCanIncrement, 36);

Of course if you require the 00#-format (leading zeros and uppercase) you need to apply that functions too. Holgers comment already contains a short variant of it to combine uppercase/leading zeros:

String formatted = String.format("000%S", radix36)
                         .substring(radix36.length());
like image 139
Roland Avatar answered Sep 23 '26 12:09

Roland


You can format your number as a base-36 number (you want to use 36 different digits: 0 - 9 = 10 digits + A - Z = 26 digits).

To get it exactly in the format you want (upper-case, with leading zeroes):

String s = Integer.toString(numberA, 36).toUpperCase();
String result = String.format("%3s", s).replace(' ', '0');
like image 24
Jesper Avatar answered Sep 23 '26 11:09

Jesper



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!