converting values ?
Hi everybody i have values like 20,452,0035,645,00how do convert these values in toint data type ? i cant do this because of the comma (,) ,what is the best data type to store these values ?any idea ?
[235 byte] By [
suisa] at [2007-11-27 2:37:31]

there may be a quicker way, but if you store them as strings, and use replaceAll(",", "") then Integer.parseInt(), that might work.