Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
How to convert an String array to a float array? For example:
String
float
String[] arr = new String[] {"1.1","2.2","3.3","4.4","5.5"};
At the end it should be a float array.
float[]
arr
Float.parseFloat(String s)
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
float[]with the same length asarr. 2. Iteratearr. 3. UseFloat.parseFloat(String s)on every string. 4. Add the result to the float array.