Read string till a sign : string read « string « C++ Tutorial






#include <iostream>  
  #include <string>    
  using namespace std;  
    
  int main(){
     string full_name, nickname, address;  
     string greeting("Hello, ");  
    
     cout << "Enter your full name: ";  
     getline(cin, full_name);     
     cout << "Your full name is: " << full_name << endl;  
    
     cout << "Enter your nickname: ";  
     cin >> nickname;             
    
     greeting += nickname;        
     cout << greeting << endl;    
    
     cout << "Enter your address on separate lines\n";  
     cout << "Terminate with '$'\n";  
     getline(cin, address, '$');
     cout << "Your address is: " << address << endl;  
     return 0;  
  }








15.15.string read
15.15.1.Use cin in while loop to read string
15.15.2.Read a string from keyboard and decide if to exit a while loop
15.15.3.Use cin to read string
15.15.4.Read string till a sign
15.15.5.Read string from keyboard and get substring