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);

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM