How do I find words that only contain/consist of a given char sequence
问题 I wish to loop through a dictionary file and find words that contain only the given characters Example dgo Desired results: dog, god NOT words that contain (within them) the given characters I am working with the following code: while((dictionaryWord = br_.readLine()) != null) { if(dictionaryWord.contains(getWord())) System.out.println(dictionaryWord); } But this gives me all words which contain the given characters -- NOT DESIRED 回答1: Without regular expressions: public static boolean