I need to increment a String in java from "aaaaaaaa" to "aaaaaab" to "aaaaaac" up through the alphabet, then eventually to "aaaaaaba" to "aaaaaabb" etc. etc.
Is there a trick for this?
|
2
|
I need to increment a String in java from "aaaaaaaa" to "aaaaaab" to "aaaaaac" up through the alphabet, then eventually to "aaaaaaba" to "aaaaaabb" etc. etc. Is there a trick for this?
|
||||||||||||
|
|
|
It's not much of a "trick", but this works for 4-char strings. Obviously it gets uglier for longer strings, but the idea is the same.
|
||||||||||
|
|
|
You're basically implementing a Base 26 number system with leading "zeroes" ("a"). You do it the same way you convert a int to a base-2 or base-10 String, but instead of using 2 or 10, you use 26 and instead of '0' as your base, you use 'a'. In Java you can easily use this:
The basic idea then is to not store the String, but just some counter (int an int or a long, depending on your requirements) and to convert it to the String as needed. This way you can easily increase/decrease/modify your counter without having to parse and re-create the String. |
||||||||||
|
|
|
Increment the last character, and if it reaches Z, reset it to A and move to the previous characters. Repeat until you find a character that's not Z. Because Strings are immutable, I suggest using an array of characters instead to avoid allocating lots and lots of new objects.
|
|||
|
|
|
|
I'd have to agree with @saua's approach if you only wanted the final result, but here is a slight variation on it in the case you want every result. Note that since there are 26^8 (or 208827064576) different possible strings, I doubt you want them all. That said, my code prints them instead of storing only one in a String Builder. (Not that it really matters, though.)
|
|||
|
|
|
|
I would create a character array and increment the characters individually. Strings are immutable in Java, so each change would create a new spot on the heap resulting in memory growing and growing. With a character array, you shouldn't have that problem... |
||
|
|
|
|
Have an array of byte that contain ascii values, and have loop that increments the far right digit while doing carry overs. Then create the string using
Make sure you pass in the charset as US-ASCII or UTF-8 to be unambiguous. |
||
|
|
|
|
you can use big integer's toString(radix) method like:
|
||||||
|
|
|
Just expanding on the examples, as to Implementation, consider putting this into a Class... Each time you call toString of the Class it would return the next value:
|
|||
|
|