Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,844 questions

55,671 answers

573 users

How to extract multiple floats from a string of floats in Java

1 Answer

0 votes
import java.util.Scanner;

public class ExtractFloatsFromString_Java {
    public static void main(String[] args) {
        String str = "2.809 -36.91 21.487 -493.808 5034.7001";
        float[] floats = new float[5];

        Scanner scanner = new Scanner(str);
        int i = 0;

        while (scanner.hasNext()) {
            String token = scanner.next();
            float f = Float.parseFloat(token);
            System.out.println(f);
            floats[i++] = f;
        }
        
        scanner.close();
    }
}



/*
run:

2.809
-36.91
21.487
-493.808
5034.7

*/

 



answered Jul 28, 2024 by avibootz
...