C++에서 istringstream 사용에 관한 질문입니다.

aeronova의 이미지

안녕하세요,
istringstream을 C에서 sscanf처럼 사용되는 것을 보고 다음과 같은 line을 읽어서 전체 칼럼의 수를 계산하려고 했습니다.

"  7.855325253374236		15.71065050674847		23.5659757601227   "

위의 string의 전후로 whitespace가 들어가 있는데, 이렇게 되면 제가 다음처럼 칼럼 수를 계산하면 3이 아니라 4가 나오는군요.
(몇번의 실험결과 string 맨 뒤의 whitespace가 문제의 원인 같습니다.)
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
int main(void) {
    string myline = "  7.855325253374236		15.71065050674847		23.5659757601227   ";
    istringstream myiss(myline);
    int j=0;
    while (!myiss.eof()) {
        double temp;
        //cout << myiss.str() << endl;
        myiss >> temp;
        cout << temp << endl;
        j++;
    }
    cout << "num of col: " << j << endl;
    return 0;
}

출력 결과는,
7.85533
15.7107
23.566
23.566
num of col: 4

아무리 보아도 왜 23.566이란 맨 마지막 숫자가 한번 더 나오는지 모르겠습니다ㅜㅜ
설명 좀 부탁드리겠습니다.
pool007의 이미지

a b c가 저장되어있다고 합시다.

myiss >> var;
myiss >> var;
myiss >> var;

지금 쓰신 코드는 바로 이 시점에서 myiss.eof() 를 하면 true가 나온다고
생각하시고 쓴것입니다.

그렇데 사실은 안그래요.

한번 더 myiss >> var 하면 읽을려고 시도하고 그제서야 eof인걸 압니다.

결과적으로, 이렇게 바꾸세요.

#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
int main(void) {
    string myline = "  7.855325253374236 15.71065050674847 23.5659757601227  ";
    istringstream myiss(myline);
    int j=0;
    while (true) {
        double temp;
        myiss >> temp;
        if (myiss.eof()) break;
        cout << temp << endl;
        j++;
    }
    cout << "num of col: " << j << endl;
    return 0;
}

--
Passion is like genius; a miracle.

--
Passion is like genius; a miracle.

aeronova의 이미지

감사합니다. 맨 마지막에 붙어 있는 whitespace 때문에 한 번 더 읽어야 eof를 만나는군요.
그런데 혹시 "/dev/null" 같은 것이 C++에 있나요?
왜냐면 제가 굳이 읽어들인 double temp를 사용할 필요가 없거든요.
혹시 읽은 값을 그냥 dump할 수 있으면 싶어서요.

It's better to burn out than to fade away. -- Kurt Cobain.

doldori의 이미지

마지막의 whitespace가 있건 없건 동일하게 작동하려면
아래 wikipedia의 방법처럼 해야 합니다.

만약 행 개수가 몇 개인지만 알고 싶다면 이런 방법도 있습니다.

#include <iterator>
 
string line;
istringstream iss(line);
istream_iterator<double> beg(iss), end;
int ncol = distance(beg, end);

thyoo의 이미지

언어 표준에서는 OS stuff를 다루지 않습니다.

/dev/null (*nix)
(Any Accessible Directory)\NUL (windows)

를 그냥 open해서 쓰시면 됩니다.
___________________________________
Less is More (Robert Browning)

___________________________________
Less is More (Robert Browning)

aeronova의 이미지

근데, 원 질문에 대한 답이 wikipedia에서도 지적되어 있네요. :)

http://en.wikibooks.org/wiki/C++_Programming/STL

Correct:

#include <iostream>
 
...
 
while (infile >> data)
{
    // manipulate data here
}

Wrong:

#include <iostream>
 
...
 
while (!infile.eof())
{
    infile >> data; // wrong!
    // manipulate data here
}

This will cause the last item in the input file to be processed twice, because eof() does not return true until input fails due to EOF.

It's better to burn out than to fade away. -- Kurt Cobain.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.