Answers for "how to split string in java by different number of spaces"

0

how can I split string according to space in java?

str = "Hello I'm your String";
String[] splited = str.split("\\s+");
Posted by: Guest on August-09-2021
-1

hwo to split string by spaces in java

String lineOfCurrencies = "USD JPY AUD SGD HKD CAD CHF GBP EURO INR";
String[] currencies = lineOfCurrencies.split(" ");
Posted by: Guest on November-23-2020

Code answers related to "how to split string in java by different number of spaces"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language