투케이2K

48. (Objective-C/objc) hasPrefix , hasSuffix 사용해 특정 문자열로 시작 , 종료 하는 지 확인 실시 본문

Objective-C

48. (Objective-C/objc) hasPrefix , hasSuffix 사용해 특정 문자열로 시작 , 종료 하는 지 확인 실시

투케이2K 2022. 7. 26. 21:11

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("=============================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("=============================== \n");
    printf("\n");
    
    /*
    // ------------------------------------
    [요약 설명]
    // ------------------------------------
    1. hasPrefix : 특정 문자열로 시작하는지 확인합니다
    // ------------------------------------
    2. hasSuffix : 특정 문자열로 종료하는지 확인합니다
    // ------------------------------------
    3. bool 변수값은 true 면 1 값 / false 면 0 값을 출력합니다
    // ------------------------------------
    */
    
    
    // [초기 변수 선언 실시]
    NSString *str_Data = @"hello 안녕 투케이";
    
    
    // [특정 문자열로 시작하는지 확인]
    bool one_Start = [str_Data hasPrefix:@"hello"];
    bool two_Start = [str_Data hasPrefix:@"2K"];
    
    
    // [특정 문자열로 종료하는지 확인]
    bool one_End = [str_Data hasSuffix:@"투케이"];
    bool two_End = [str_Data hasSuffix:@"2K"];
    
    
    // [결과 출력 실시]
    printf("\n");
    printf("=============================== \n");
    printf("[one_Start :: %d] \n", one_Start);
    printf("[two_Start :: %d] \n", two_Start);
    printf("[one_End :: %d] \n", one_End);
    printf("[two_End :: %d] \n", two_End);
    printf("=============================== \n");
    printf("\n");
}
 

[결과 출력]

 

 
반응형
Comments