我如何在一个句子中分隔单词,我想通过使用for或while语句以及使用哪些方法,我不确切地知道它。例如,我们的字符串是"one two three four"
。我想将它排序为如下所示的输出;
one
two
three
four
答案 0 :(得分:3)
String newStr = oldStr.replaceAll(" ", "\n");
System.out.println(newStr);
答案 1 :(得分:2)
这是一个开始点:
String text = "one two three four";
String[] words = text.split(" ");
// Now implement any sorting algorithm on the array "words"