Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道有什么方法/示例可以在其中搜索文本文件中的特定单词,其中它由单词列表组成,而无需循环每一行来获取单词?
谢谢
从你的文本中创建一个字符串(谷歌上有很多例子)然后:
if(myString.contains("this character sequence")){ //Do Something }
最后,您将不得不搜索所有行,因为您无法判断您的单词是否在第 4 行,例如,如果您只搜索 3 行。
基本上你可以读入文件并扫描你的单词。行不行,因为一个单词可以从上一行开始并在下一行结束。