wchar_t를 사용한 테스트가 제대로 작동하지 않아서 직접 처리했습니다.
#include <stdint.h> #include <stdio.h> #include <stdlib.h> // https://stackoverflow.com/a/44776334 int8_t utf8_length(char c) { // 4-byte character (11110XXX) if ((c & 0b11111000) == 0b11110000) return 4; // 3-byte character (1110XXXX) if ((c & 0b11110000) == 0b11100000) return 3; // 2-byte character (110XXXXX) if ((c & 0b11100000) == 0b11000000) return 2; // 1-byte ASCII character (0XXXXXXX) if ((c & 0b10000000) == 0b00000000) return 1; // Probably a 10XXXXXXX continuation byte return -1; } void main () { const char* filepath = "example.txt"; FILE* file = fopen(filepath, "r"); if (!file) { perror(filepath); exit(1); } char c; for(;;) { c = getc(file); if (c == EOF) break; putc(c, stdout); int8_t length = utf8_length(c); while (--length) { c = getc(file); putc(c, stdout); } getchar(); } fclose (file); }
제 테스트 파일은 다음과 같습니다.
Hello, World! ?? Hello ¡Hola! Ça va? 你好 こんにちは 안녕하세요 ©®™✓✗ ????✨ €??
위 내용은 C에서 문자로 UTF-har 읽기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!