fork(1) download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <sstream>
  4. #include <string>
  5.  
  6. int main() {
  7. std::istringstream is(R"(
  8. "test\"space space\"","hello"
  9. )");
  10.  
  11. std::string s;
  12. is >> std::quoted(s);
  13.  
  14. std::cout << s << "\n";
  15. }
  16.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
test"space space"