Istringstream
Read string with a special delimiter
istream& getline (istream& is, string& str, char delim);getline(version1, segment, '.')Detect EOF
iss.eof(); // returns true if it has reached EOF.
iss.good(); // returns true if none of the error state flags (eofbit, failbit and badbit) is set.Last updated