我有這樣報價符號解析
"a",205
"b",214
"c",223
""",13
文件,我需要分析它 我逐行讀取爲str和我有第二個字符的字符串轉換爲整數,但是當涉及到報價<「>字符,它拋出一個異常串標超出範圍。
std::string STRING;
std::ifstream infile;
std::vector < std::string > tokens;
infile.open (Filename);
unsigned int x;
while(! infile.eof())
{
std::getline(infile,STRING);
tokens = Utility::splitString(STRING,',');//array of tokens
x = (unsigned int)tokens[0][1];//convert first tokens,second character to uint
}
我認爲這是一些與轉義序列。
一個稍大的代碼片段將在這裏幫助。什麼是str [0] [1]應該是?這是一個二維字符串嗎? – 2010-11-04 11:04:08
什麼是你的兩個指標?什麼具體的數據類型是'str'的?你能否提供更多的代碼? – Flinsch 2010-11-04 11:04:38
你有沒有看過'STRING'和'token'的內容? – Flinsch 2010-11-04 11:13:32