Contents

Develop
2015.11.10 15:49

[c] 한글 문자열 출력

Views 3117 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

영어는 1byte, 한글은 2byte 차지한다.

따라서 문자열 처리할 때 한 포인터씩 출력을 하게 되면 한글이 깨지는 현상이 발생한다.

예를 들어 한글과 영어가 섞여있는 문자열을 출력할 때 다음과 같은 소스를 이용하면 한글이 깨져서 출력된다.

 

#include <stdio.h>
#include <stdlib.h>

const int MAX_SIZE = 1000;


int main(){
    FILE *fp = fopen("test.txt","r");
    char* inp = (char*)malloc(sizeof(char)*MAX_SIZE);
    int i;

    while(fgets(inp, MAX_SIZE, fp)){

        printf("%s" , inp);

        for(i = 0 ; i < strlen(inp) ; i++){
            printf("%c  " , inp[i]) ;
        }
        printf("\n");
    }
    
    return 0;
}

 

 

그렇다면, 한글과 영어를 판단해서 영어는 1byte, 한글은 2byte를 출력해야 할텐데,

어떻게 하면 한글인지 영어인지 확인할 수 있을까?

 

#include <stdio.h>
#include <stdlib.h>

const int MAX_SIZE = 1000;

typedef enum {false, true} bool;

int main(){
    FILE *fp = fopen("test.txt","r");
    char* inp = (char*)malloc(sizeof(char)*MAX_SIZE);
    int i;
    bool HANGUL = false;


    while(fgets(inp, MAX_SIZE, fp)){

        printf("%s" , inp);

        for(i = 0 ; i < strlen(inp) ; i++){
            if((inp[i] & 0x80) == 0x80) HANGUL = true; //한글인지 확인
            if(!HANGUL)printf("%c  " , inp[i]) ; //아니면 그냥 출력
            else{
                printf("%c%c" , inp[i] , inp[i+1]); //한글이면 2byte 출력
                i++;
            }
            HANGUL = false;
        }
        printf("\n");
    }
    
    return 0;
}

 

위의 소스는 각 char 마다 한글인지 아닌지를 판단해서 한글인 경우 2byte를 출력하게 해준다.

 


?

List of Articles
No. Category Subject Author Date Views
387 Develop [c] 코드 최적화에 대해.. hooni 2013.04.23 8710
386 Develop [c#] BFilter 툴바 소스 코드 ㅎㅎ file hooni 2013.04.23 8691
385 Develop [c++] 초간단 스택 두 가지 방식(class, struct) file hooni 2013.04.23 8688
384 Develop [c] 격자 직사각형 넓이 구하기 file hooni 2013.04.23 8686
383 Develop 논문 실험용 고려대 툴바 ㅎㅎ secret hooni 2013.04.23 8686
382 Develop [jsp] 정적/동적(차트생성) 이미지 전달 file hooni 2003.04.23 8684
381 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 8675
380 Develop [c] 소켓 스트림 서버/클라이언트 (UDP) file hooni 2013.04.23 8671
379 Develop [php] 웹 응용프로그램(engines) 모음 file hooni 2013.04.23 8669
378 Develop [c] 단기과정[01/24] 정렬 알고리즘 hooni 2003.04.23 8660
377 Develop [c] 정사각배열의 서브 배열의 최대 값 구하기 file hooni 2003.04.23 8647
376 Develop 객체지향 프로그래밍에 대한 개념.. (객체) file hooni 2013.04.23 8647
Board Pagination Prev 1 ... 34 35 36 37 38 39 40 41 42 43 ... 71 Next
/ 71