Contents

Develop
2015.11.10 15:49

[c] 한글 문자열 출력

조회 수 3140 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

영어는 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
번호 분류 제목 글쓴이 날짜 조회 수
433 System/OS [linux] iptables 명령어 매뉴얼(options) hooni 2003.04.23 12626
432 Develop [js] 인터넷 주소(URL) 인코딩 ㅋㅋ hooni 2013.04.23 12647
431 PPT [network] tcp/ip 설명 html파일 9장(ppt 포함) file hooni 2013.04.23 12650
430 Develop [vbs] CD롬 뱉는 스크립트.. hooni 2003.04.23 12672
429 Develop [c++] String Tokenizer (나중에 c 코드로 변경해서 사용할 것) hooni 2013.04.23 12694
428 Develop [c++] 기초강좌 #02(레퍼런스,메모리할당) hooni 2003.04.23 12697
427 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 12718
426 Develop [c++] RSA Sample 4 CPP hooni 2013.04.23 12735
425 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 12749
424 Develop 페이팔에서 돈 찾기 (Paypal withdraw) file hooni 2014.02.20 12755
423 Develop [c] 테트리스(Tetris) 게임(도스용) 소스코드 file hooni 2003.04.23 12781
422 Develop [c] 시간 관련 함수 설명과 예제.. file hooni 2003.04.23 12785
Board Pagination Prev 1 ... 58 59 60 61 62 63 64 65 66 67 ... 99 Next
/ 99