std::string s;
std::stringstream ss;
ss << "a=b+c" << std::endl << "d=e+f";
std::getline(ss, s, '='); // gives me "a"
std::getline(ss, s); /* gives me "b+c" <- just want to peek: don't
want to change state of ss */
std::getline(ss, s, '+'); // BUT still want "b" here, not "d=e"
s
now containsでは、行の残りの文字 ( ) を確認する"a"
にはどうすればよいですか? つまり、次の操作を次の行から開始させずに?"b+c"
(考案された例、私は知っています。)