是否有一種方法可以用普通字符串遍歷getline字符串。在getline字符串中獲取字符串
string nextLine;
getline(fin, nextLine);
nextLine = "2 BIRTH OCT 30 1998";
string stringTraverse = ?;
stringTraverse需要是「2」,然後是「BIRTH」,直到讀取所有單詞。
是否有一種方法可以用普通字符串遍歷getline字符串。在getline字符串中獲取字符串
string nextLine;
getline(fin, nextLine);
nextLine = "2 BIRTH OCT 30 1998";
string stringTraverse = ?;
stringTraverse需要是「2」,然後是「BIRTH」,直到讀取所有單詞。
你可以在nextLine.c_str()上使用sscanf來獲得每一塊。或者把nextLine成一個字符串流,然後讀出來,直到流是這樣做
stringstream s(nextLine);
while (s >> some_string)
//do stuff with string piece
爲什麼不只是'stringstream(nextLine);'? –
@Kerrek,謝謝你指出,不知道爲什麼我這樣做了 –
以下是僞邏輯(未測試,但應該看起來像):
size_t word = 0, currentSpace;
while(string::npos != (currentSpace = nextLine.find(" ")))
{
stringTraverse = nextLine.substr(word, currentSpace);
while(nextLine[++currentSpace] == " ");
word = currentSpace;
// ... use it
}
if(nextLine[word] != 0)
stringTraverse = nextLine.substr(word);
的std ::函數getline有與此無關。特別是因爲你_immediately覆蓋你剛剛從「fin」中檢索到的字符串(不管是什麼)。第二行是完全不相關的。 –