My project recieves an ASCII text string such as "3FE35853" and stores them in an array. I need to convert each ASCII byte in the array to its decimal equivalent.

example:
"3" = 3
"F" = 15
"E" = 14

Is there an easy way to do this without using a lookup table?


Thanks,

John