I need to convert a string to array by deleting "TAB" and "Newline" .
For example:
0.072 2.058 -2.36
57.11 2220.3 +10.0
(the space among the data above is using "TAB" key)
To convert "String" above to array:
array[0] ->0.072
array[1] ->2.058
array[2] ->-2.36
array[3] ->57.11
array[4] ->2220.3
array[5] ->+10.0
Hope someone provide solution, thx!