Can anyone help me to do this
if a jTextField has text like this 1A2B89C0
array[0]=1;
array[1]=10;//A should convert to 10 ,B to 11,c to 12,........
array[2]=2;
array[3]=11;//B to 11
array[4]=8;
array[5]=9;
array[6]=12;//C to 12
array[7]=0;
actualy this part is needed for a program which is convert a number in a base to another base.The program witten is only capable to convert a number in this format(12346298).
and i cant insert a number which have a digit 10 and 10+.