检查字符串是否包含字母

时间:2013-10-18 02:31:26

标签: java string list

我有一个关于如何在java中执行涉及字符串和列表的问题。我希望能够输入一个字符串,例如

  

“AAA”

使用扫描仪类,程序必须返回最短的单词,其中包含三个a。因此,例如,有一个文本文件,其中填充了数千个要与输入一起检查的单词,如果其中有三个单词,那么它是候选者,但现在它是最短的只返回那个。你究竟如何比较和查看字母输入是否在一个充满单词的文本文件的所有单词中?

3 个答案:

答案 0 :(得分:2)

首先访问java.lang.String JavaDocs

请特别注意String#contains。由于参数要求,我原谅你错过了这个。

示例:

String text = //...
if (text.contains("aaa")) {...}

答案 1 :(得分:0)

试试这个,

          while ((input = br.readLine()) != null)
            {
                if(input.contains(find)) // first find the the value contains in the whole line. 
                {
                   String[] splittedValues = input.split(" "); // if the line contains the given word split it all to extract the exact word.
                   for(String values : splittedValues)
                   {
                       if(values.contains(find))
                       {
                           System.out.println("all words : "+values);
                       }
                   }
                }
            }

答案 2 :(得分:0)

最简单的方法是使用String.contains()和一个检查长度的循环:

String search = "aaa"; // read user input
String fileAsString; // read in file
String shortest = null;
for (String word : fileAsString.split("\\s*")) {
    if (word.contains(search) && (shortest == null || word.length() < shortest.length())) {
        shortest = word;
    }
}
// shortest is either the target or null if no matches found.