I have a string that will be different each time but follow the form of -3.33,-46.53,37.39,26.55,97.11,68.46,-32.46,-5.89,-62.89,-7.9, and i want to remove each number and store as an double in an array. even pseudocode would be great i'm drawing a blank. Cheers
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
then iterate over the doubles array and do Double.parseDouble(); |
|||
|
|
|
Alternative way, reads input from file and parses items as thy are read.
If you want, you can just store them in a array like:
|
||||
|
|
|
Maybe something like:
|
|||
|
|