博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读文件
阅读量:4946 次
发布时间:2019-06-11

本文共 491 字,大约阅读时间需要 1 分钟。

#include   
#include
using namespace std; int main(int argc, _TCHAR* argv[]){ FILE* pfile = fopen("D:\\origin.txt", "rb"); if (!pfile) return false; fseek(pfile, 2, 0); wchar_t buf[1024]; wstring line; wstring newl = L"\x000D\x000A"; while (!feof(pfile)) { fgetws(buf, 1024, pfile); line = buf; if(line.find(newl)!=wstring::npos) line = line.substr(0, line.find(newl)); } fclose(pfile);}

 

转载于:https://www.cnblogs.com/chunyou128/p/4567734.html

你可能感兴趣的文章