I want to transform an int to a String such that:
0 -> "a"
1 -> "b"
2 -> "c"
and so on...
How can I do this?
|
I want to transform an
How can I do this? |
||||
|
You can convert from the character literal:
|
|||||||||
|
|
Your question is a little unclear, but it sounds like you want to be able to convert integers 0-25 to their corresponding alphabetical characters. If that's the case, your best bet logically is probably to use an enum. Though I may not be fully seeing the purpose of what you're trying to do (which is likely). You could also write a utility method which just has a big switch statement to convert them. |
|||
|
|
|
An alternate method, for some java library flavor:
which uses a radix of 36 to locate the right letter. |
|||
|
|
{'a', 'b', 'c', 'd', ...}and then if you want to convert0toa, just doString letter = array[number]– Anthony Forloney Jan 11 '11 at 0:21