Answers for "java split word every three spaces"

1

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

java split string on two or more spaces except for words in quotes

String str = "Location \"Welcome  to india\" Bangalore " +
             "Channai \"IT city\"  Mysore";

List<String> list = new ArrayList<String>();
Matcher m = Pattern.compile("([^\"]\\S*|\".+?\")\\s*").matcher(str);
while (m.find())
    list.add(m.group(1)); // Add .replace("\"", "") to remove surrounding quotes.


System.out.println(list);
Posted by: Guest on April-24-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language