1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
// istream::sentry example
#include <iostream> // std::istream, std::cout
#include <string> // std::string
#include <sstream> // std::stringstream
#include <locale> // std::isspace, std::isdigit
struct Phone {
std::string digits;
};
// custom extractor for objects of type Phone
std::istream& operator>>(std::istream& is, Phone& tel)
{
std::istream::sentry s(is);
if (s) while (is.good()) {
char c = is.get();
if (std::isspace(c,is.getloc())) break;
if (std::isdigit(c,is.getloc())) tel.digits+=c;
}
return is;
}
int main () {
std::stringstream parseme (" (555)2326");
Phone myphone;
parseme >> myphone;
std::cout << "digits parsed: " << myphone.digits << '\n';
return 0;
}
|