在给定的字符串中,我想 找到最长的单词 然后在控制台中打印出来。
我得到的输出是第二长的单词,即 "Today"
,但我应该得到 "Happiest"
。
我可以知道我做错了什么吗?有没有更好/不同的方法来查找字符串中最长的单词?
public class DemoString {
public static void main(String[] args) {
String s = "Today is the happiest day of my life";
String[] word = s.split(" ");
String longword = " ";
for (int i = 0; i < word.length; i++)
for (int j = 1 + i; j < word.length; j++)
if (word[i].length() >= word[j].length())
longword = word[i];
System.out.println(longword + " is the longest word with " + longword.length() + " characters.");
System.out.println(rts.length());
}
}
原文由 Suraj 发布,翻译遵循 CC BY-SA 4.0 许可协议
这是您可以与 Java 8 流 API 一起使用的“单行代码”:
输出:
在这里 试试看。