C++ 문자열 replace()

1 개요[ | ]

C++ 문자열 replace()
#include <iostream>
using namespace std;

int main() {
    string input = "hello world";
    string output = input.replace(0, 5, "yellow");
    cout << output; // yellow world
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}