Notice
Recent Posts
Recent Comments
Link
투케이2K
29. (C++) replace 사용해 특정 문자열을 다른 문자열로 변경 (치환) 실시 본문
[개발 환경 설정]
개발 언어 : 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]: =====================================================
반응형
'C++' 카테고리의 다른 글
31. (C++) map 생성 및 find 사용해 map 에 key 포함 여부 확인 실시 (0) | 2023.03.05 |
---|---|
30. (C++) map 생성 및 key , value 데이터 삽입 (insert) , for iter 데이터 출력 실시 (0) | 2023.03.05 |
28. (C++) try catch 구문 사용해 에러 예외 처리 및 throw 예외 발생 수행 (0) | 2023.03.04 |
27. (C++) [istringstream] : split 사용해 문자열 분리 실시 (0) | 2023.03.04 |
26. (C++) string to double 데이터 형 변환 수행 실시 (0) | 2023.03.04 |
Comments