istringstream

istringstream    is ( " hello   world " );   
  
string    s,str;   
  str   
=     is .str()   ;    // str   =   hello   world   
   is     >>    s;                    // s   =   hello   
  str    =     is .str()   ;    // str   =   hello   world  

你可能感兴趣的:(String)