我有一堆单词,我需要得到其中包含“w”字母的最长单词。我已经这样做了
public static boolean longestWWord(String s)
{
boolean hasw=false;
for(int i = 0; i < s.length(); i++)
{
if(s.charAt(i)=='w')
{
hasw = true;
}
}
return hasw;
}
System.out.println("Word with maximum 'w' chareckters : ");
int counter =0;
String word="";
for ( String ss : arr) {
if(longestWWord(ss)){
if(ss.length()>counter)
{
counter = ss.length();
word = ss;
}
}
}
System.out.println(word);
但是现在我有一个任务是使用正则表达式查找单词中是否包含“w”以及该单词的长度。请帮我