C++의 replace 함수는 std::string 객체 내의 일부 문자열을 다른 문자열로 치환하는 데 사용된다. 원형 string& replace(size_t pos, size_t len, const string& str); 처음 → 시작 부분 인덱스 중간 → 인덱스 + 처음 마지막 → 치환할 문자 이 함수는 주어진 위치(pos)부터 시작하여 지정된 길이(len)만큼의 문자열을 새로운 문자열(str)로 대체한다. 예: #include #include int main() { std::string str = "Hello, world!"; std::cout