"C++ replace()"의 두 판 사이의 차이

20번째 줄: 20번째 줄:
* [[C++ erase()]] - 문자열에서 문자 삭제
* [[C++ erase()]] - 문자열에서 문자 삭제
* [[C++ assign()]] - 문자열에 내용 할당
* [[C++ assign()]] - 문자열에 내용 할당
* [[C++ regex_replace()]] - 매치되는 부분을 대체


==참고==
==참고==

2019년 3월 17일 (일) 23:15 판

1 개요

C++ replace()
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
  string s = "hello world";
  replace( s.begin(), s.end(), 'l', 'm');
  cout << s << endl;
  // hemmo wormd
}

2 같이 보기

3 참고

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