检查.txt文件中是否存在单词(GFI MAX)

时间:2014-12-07 16:05:08

标签: windows batch-file text compare

我需要在GFI Max中实现一个脚本,它可以检查文本文件(.txt)中是否存在特定单词(例如" Finished")

我希望能够返回FALSE或TRUE值。

此脚本可以是js,vbs,cmd,bat。

提前致谢, ç

1 个答案:

答案 0 :(得分:0)

这样做:

public static bool FindWord(String text,String word)
{
String[] words=text.Split(' ');
for(int i=0;i<word.Length();i++)
{
   if(words[i]==word)
     return true;
}
  return false;
}