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.
我写了一个小的 rgrep 函数,我将有另一个文本文件,其中包含我正在检查模式的单词。我的文本文件将采用以下格式。
a because cat 7.*
我如何编写一个循环来为文件中的每个单词调用一个函数?谢谢!
尝试使用 fopen 打开文件并使用 fgets 逐行读取
也检查这篇文章 c,导入具有不同行的文本文件并处理这些行
首先为该模式创建一个状态机,然后每个字符将该状态机驱动到下一个状态。检查状态以检查模式匹配。