Is there an easy way to separate the "digits" of a hex number?
For example 63251 = F713, but I need to separate out each digit
as ASCII into an array element.
e.g.
NumArray[0] = "F"
NumArray[1] = "7"
NumArray[2] = "2"
...
I know there must be an elegant way, but I can't think of it.
Bookmarks