I can almost here you say: "What the @##$# is a hexavigesimal
value?"
A hexavigesimal numeral system has a base of twenty-six. Alternatively, base-26 may be represented using only letters of the Latin alphabet. As there are 26 letters in English, base-26 is also the highest base in which this is possible and hence utilizes every letter. 0 is represented by A, 1 = B, 2 = C ... 24 = Y, 25 = Z. Some examples: 26 = AA, 30 = BE
So it is basically what Excel uses a column description. I would like to have a function that converts a node with an int value into this value.
Source:
<root>
<row>12</row>
<column>23</column>
</root>
I would like to print column
as X
by calling a template that does the conversion. Can it be done?