Originally posted by Kym Thompson:
Or are you just unsure how to turn a non-digit character into a numeric value?
I think that is my problem. I can convert base 8, 2, etc. but the ones that start using chars instead of digits confuse me in java. I was hopeing there was some type of inherent method in java for dealing with this.
It has been suggested that I could just use the int value of a char (corresponds to it's ASCII value) and the multiply that by 128 ^ (position in the string)
I was hopeing that would work if I enclosed it in a loop and accumulated the values received, but I'm not sure that it's what I'm looking for. I can't get it to work.
Stephen