I want to split a string like
"first middle last"
with String.split()
. But when i try to split it I get
String[] array = {"first","","","","middle","","last"}
I tried using String.isEmpty()
to check for empty strings after I split them but I it doesn't work in android. Here is my code:
String s = "First Middle Last";
String[] array = s.split(" ");
for(int i=0; i<array.length; i++) {
//displays segmented strings here
}
I think there is a way to split it like this: {"first","middle","last"}
but can't figure out how.
Thanks for the help!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…