How to convert an String
array to a float
array?
For example:
String[] arr = new String[] {"1.1","2.2","3.3","4.4","5.5"};
At the end it should be a float array.
How to convert an String
array to a float
array?
For example:
String[] arr = new String[] {"1.1","2.2","3.3","4.4","5.5"};
At the end it should be a float array.