#include <iostream> #include <string> using namespace std; int main() { string sentence = "i hate coding"; sentence.erase(0, 7); //첫번째인자는 시작인덱스, 두번째인자는 제거할 문자의 갯수 // 즉, 0번방부터 6번방까지 7개의 방이 지워진다. cout << "i like " << sentence << endl; return 0; }