讀取一個.txt檔案,有六個數字的字串,分割後atoi(token)會連跑六次輸出,
請問要怎麼取分別取出六次輸出的int值? 取出的值是用來重繪圖案用的參數
CString IntDlg = "text|*.txt|*.*|*.*||";
CFileDialog dlg(TRUE,"txt","*.txt",OFN_HIDEREADONLY,IntDlg,this);
dlg.m_ofn.lpstrInitialDir=_T("C:\\");
if(dlg.DoModal()==IDOK)
{
file.Open(IntDlg=dlg.GetPathName(),CFile::modeRead);
file.ReadString(str);
TCHAR seps[] = _T(",");
//file.SeekToEnd();
TCHAR* token = _tcstok((LPTSTR)(LPCTSTR)str,seps);
while( token != NULL )
{
x = atoi(token);
token = _tcstok( NULL, seps);
}
file.Close();
}
}
This entry passed through the Full-Text RSS service - if this is your content and you're reading it on someone else's site, please read the FAQ at fivefilters.org/content-only/faq.php#publishers.