C++从文件中查找特定的字符串,并提取该字符串

2021/7/8 11:09:48

本文主要是介绍C++从文件中查找特定的字符串,并提取该字符串,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include<cstring>

#include<cstdio>

#include<iostream>

#include <atlstr.h>

using namespace std;
int main()
{
FILE *fp_statfile = fopen("123.txt", "a+");
CString filecontent("");
//文件内容读入内存
while (!feof(fp_statfile)) {
filecontent.AppendChar(getc(fp_statfile));
}
//查找X264的SSIM数值
//X264特征字符串
CString featurestr("MAC:");
//查找,返回字符串位置
int paraloc = filecontent.Find(featurestr);
CString parastr;
//找到了的话
if (paraloc != -1) {
fprintf(fp_statfile, "%s %s %s %d", "We", "are", "in", 2014);
//跳过特征字符串,提取5位
parastr = filecontent.Mid(paraloc + featurestr.GetLength(), 10);
printf("%s\n", parastr);
}
else {
printf("%s\n", "hahahahahhhahhahha");
}
fclose(fp_statfile);

}



这篇关于C++从文件中查找特定的字符串,并提取该字符串的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程