operator[], at(), front(), back() size(), length(), capacity(), resize(), shrink_to_fit(), reserve(), clear(), erase(), empty() c_str(), substr(), replace(), compare(), copy(), find(), insert(), push_back(), pop_back() begin(), end() swap(), operator+ string substr(size_t index = 0, size_t len = npos) const; 문자열을 잘라서 반환한다. s2 = s1.substr(); // 처음부터 끝까지 s2 = s1.substr(3); // 3부터 끝까지.. s2 = s1.sub..