반응형
함수
-
C++ String Replace 함수유용한 정보 2022. 1. 1. 00:47
1. 헤더 선언 #include => string 헤더에 포함된 함수이므로 string헤더를 참조해야 합니다. 2. 사용법 S.replace(시작점, 변환할 갯수, 대체할 문자열); => 위와 같이 시작점, 변환할 개수, 대체할 문자열을 대입하여 주어진 String에서 replace함수를 사용할 수 있습니다. 3. 예제 #include #include #include #include #include #include #include #include using namespace std; int main() { string s("you are the apple of my eye."); s.replace(0,3,"We"); cout