Ich muss einen Text mit Hilfe des Trennzeichens aufteilen ". "
. Ich möchte zum Beispiel diese Zeichenkette:
Washington is the U.S Capital. Barack is living there.
In zwei Teile zu schneiden:
Washington is the U.S Capital.
Barack is living there.
Hier ist mein Code:
// Initialize the tokenizer
StringTokenizer tokenizer = new StringTokenizer("Washington is the U.S Capital. Barack is living there.", ". ");
while (tokenizer.hasMoreTokens()) {
System.out.println(tokenizer.nextToken());
}
Und das Ergebnis ist leider :
Washington
is
the
U
S
Capital
Barack
is
living
there
Kann mir jemand erklären, was hier los ist?