对句子中的单词进行排序

时间:2012-01-04 21:47:10

标签: java sorting

我如何在一个句子中分隔单词,我想通过使用for或while语句以及使用哪些方法,我不确切地知道它。例如,我们的字符串是"one two three four"。我想将它排序为如下所示的输出;

one
two
three
four

2 个答案:

答案 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"