본문 바로가기
TIL

C++ string replace, count

by 독서왕뼝아리 2023. 4. 10.

 

맨날 까먹어서 글 쓴다.

 

 

string 메서드 replace(치환할 시작 위치, 치환할만큼 길이, 치환할 문자열)

string target="Hello World!";
string change="Bye";

target.replace(0, 5, change);

프로그래머스에서 풀다가 테스트함...

 

 

 

 

<algorithm> 내장함수 count(문자열 시작 위치, 문자열 끝나는 위치, 찾을 char)

#include<algorithm>

string str="10001100001";
count(str.begin(), str.end(), '1'); // 4