gpt4 book ai didi

c++ - 使用 std::setw 后从流输出时如何清除宽度?

转载 作者:可可西里 更新时间:2023-11-01 18:36:05 26 4
gpt4 key购买 nike

我正在使用 std::stringstream 将固定格式的字符串解析为值。但是最后要解析的值不是固定长度。

要解析这样的字符串,我可能会这样做:

std::stringstream ss("123ABCDEF1And then the rest of the string");
ss >> std::setw(3) >> nId
>> std::setw(6) >> sLabel
>> std::setw(1) >> bFlag
>> sLeftovers;

但是如何设置宽度才能输出字符串的剩余部分?

通过反复试验,我发现这样做是可行的:

   >> std::setw(-1) >> sLeftovers;

但是正确的方法是什么?

最佳答案

请记住,输入运算符 >>> 在空白处停止读取。

使用例如std::getline获取字符串的其余部分:

std::stringstream ss("123ABCDEF1And then the rest of the string");
ss >> std::setw(3) >> nId
>> std::setw(6) >> sLabel
>> std::setw(1) >> bFlag;
std::getline(ss, sLeftovers);

关于c++ - 使用 std::setw 后从流输出时如何清除宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13496387/

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