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) {
for ( int i = 0; i < 10; i++)
{
//跳过特征字符串,提取5位
parastr = filecontent.Mid(paraloc + featurestr.GetLength(), 5);
printf("%s", parastr);
paraloc++;
}

}

fclose(fp_statfile);

}

原文链接: https://www.cnblogs.com/wang-xiao-shuai/p/14984743.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

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

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/212007

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月13日 上午1:06
下一篇 2023年2月13日 上午1:06

相关推荐