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.
请告诉我如何编写一个检查文件中每一行的函数,如果遇到某个字符串(例如“set cookie”),它将输出该行的其余部分。
您可能想使用strstr. 首先,逐行读取变量(使用cin.getline),然后使用 . 检查给定的行strstr。如果输出strstris not NULL,则按照您认为合适的方式处理该行。
strstr
cin.getline
NULL