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



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

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

这个脚本可以是js,vbs,cmd,bat。

提前感谢,C

只需这样做:

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;
}

相关内容

  • 没有找到相关文章

最新更新