Istream 最多消耗 N 个空白字符
是否可以告诉 std::istream 在应用运算符>>时仅消耗固定数量(即1)的空白字符?我有一个想要解析为参数的字符串,但某些参数为空,这导致后续调用operator>>失败。
Is it possible to tell a std::istream to only consume a fixed number (namely, 1) of whitespace characters when applying the operator>>? I have a string I'd like to parse into parameters, but some of the parameters are empty, which is causing subsequent calls to operator>> to fail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
std::noskipws
:或者,您可以将整行转换为字符串(请参阅 std::getline ),然后 用 Boost 分割< /a>.
Try
std::noskipws
:Or, you could slurp the entire line into a string (see
std::getline
), and then split it with Boost.