gpt4 book ai didi

c++ - 如何在 C++ 的同一行上两次 getline()?

转载 作者:行者123 更新时间:2023-11-30 01:01:34 25 4
gpt4 key购买 nike

我有一个文件,我想存储一行的第一部分直到到达“,”,然后将该行的剩余部分存储到另一个变量中。目前,它跳过了一半的行。例如,这是我的文件的三行:

021200725340,Scotch Removable Clear Mounting Squares - 35 Ct
041520035646,Careone Family Comb Set - 8 Ct
204040000000,Plums Black

我的代码只存储了一半的行:

while(getline(file, upc)){ 
getline(file, upc, ',');
getline(file, description);
}

最佳答案

My code only stores half of the lines:

while 语句的条件内调用 getline 负责此操作。

将您的代码更改为:

while( getline(file, upc, ',') && getline(file, description) )
{
// Use the data.
}

关于c++ - 如何在 C++ 的同一行上两次 getline()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58897675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com