[stirng] 061. 문자열에서 특정 문자만 제거하기 ( erase, remove )

jychan99·2021년 11월 8일
0
 #include <iostream>

#include <string>

using namespace std;



int main()

{

    string sentence = "i like coding";



    //문자열에서 특정 문자만 제거할때는 erase와 remove함수를 함께 사용한다.

    //문자열.erase(remove(시작부분,끝부분,지울 특정문자),문자열.end());

    sentence.erase(remove(sentence.begin(), sentence.end(), ' '), sentence.end());



    cout << sentence << endl;



    return 0;

}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보