c++在txt文档中查找所有匹配的指定字符串,统计数量 和所在行数 用CString实现,空白行也要算一行
时间: 2024-04-14 15:26:34 浏览: 141
如果你想使用 MFC(Microsoft Foundation Classes)框架和 CString 类来处理字符串和文本文件操作,并且希望将空白行也算作一行进行统计,可以使用下面的示例代码:
```cpp
#include <iostream>
#include <fstream>
#include <afx.h>
int main() {
CStdioFile file;
CString filePath = _T("example.txt"); // 替换为你的文本文件路径
CString searchStr = _T("指定字符串"); // 替换为你要查找的字符串
if (file.Open(filePath, CFile::modeRead | CFile::typeText)) {
CString line;
int count = 0;
int lineNum = 0;
while (file.ReadString(line)) {
lineNum++;
int found = line.Find(searchStr);
while (found != -1) {
count++;
std::cout << "Found at line " << lineNum << ", position " << found << std::endl;
found = line.Find(searchStr, found + searchStr.GetLength());
}
}
std::cout << "Total occurrences: " << count << std::endl;
file.Close();
}
else {
std::cout << "Failed to open the file!" << std::endl;
}
return 0;
}
```
这段代码与之前提供的相同,只是在循环读取文件行时,无论是否为空白行,都会将其作为一行进行统计。
请确保在项目设置中正确添加了 MFC 支持,并链接了 MFC 库。
希望对你有所帮助!
阅读全文