java split string by atleast 2 spaces code example
Example 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));
System.out.println(list);
Example 2: java split string on two or more spaces except for words in quotes
[Location, "Welcome to india", Bangalore, Channai, "IT city", Mysore]