android split string into array by delimiter
String currentString = "hello lautturi java world"; String[] pieces = currentString.split(" "); pieces[0]; // hello pieces[1]; // lautturi