투케이2K

29. (C++) replace 사용해 특정 문자열을 다른 문자열로 변경 (치환) 실시 본문

C++

29. (C++) replace 사용해 특정 문자열을 다른 문자열로 변경 (치환) 실시

투케이2K 2023. 3. 5. 10:05

[개발 환경 설정]

개발 언어 : C++

 

[소스 코드]

// -----------------------------------------------------------------------------------------
//
// Created by KGH on 2023-02-12.
//
// -----------------------------------------------------------------------------------------





// -----------------------------------------------------------------------------------------
// TODO [헤더 파일 import]

#include "Test.h"
#include <android/log.h>
// -----------------------------------------------------------------------------------------





// -----------------------------------------------------------------------------------------
// TODO [include 및 define 문 정의]
#include <iostream>
#include <string>
using namespace std;
// -----------------------------------------------------------------------------------------





// -----------------------------------------------------------------------------------------
// TODO [구현부 소스 코드 작성]
int main(void)
{


    // [변수 선언 실시]
    string origin = "hello 투케이";
    string search = "투케이";
    string change = "TWOK";


    // [특정 문자 찾기]
    string::size_type index = origin.find(search);


    // [특정 문자가 포함된 경우]
    if (index != string::npos)
    {

        // [문자열 변경 실시]
        origin.replace(index, search.length(), change);

    }


    // [로그 출력 실시]
    __android_log_print(ANDROID_LOG_WARN, "[C++] [LOG]", "%s", "=====================================================");
    __android_log_print(ANDROID_LOG_INFO, "[C++] [LOG]", "[origin] :: %s", origin.c_str());
    __android_log_print(ANDROID_LOG_WARN, "[C++] [LOG]", "%s", "=====================================================");


    return 0;
}
// --------------------------------------------------------------------------------------
 

[결과 출력]

 

W/[C++] [LOG]: =====================================================
I/[C++] [LOG]: [origin] :: hello TWOK
W/[C++] [LOG]: =====================================================

 

반응형
Comments