wcslen

babbab의 이미지

#include <stdio.h>
#include <wchar.h>
 
main(){
	wchar_t str[100];
 
	fgetws(str,100,stdin);
	printf("%d", wcslen(str));
	wprintf(L"%s", str);
}

c:\Users\Owner\Desktop>cl test.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.

test.c
Microsoft (R) Incremental Linker Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.

/out:test.exe
test.obj

c:\Users\Owner\Desktop>test
이다
5이다

fgetws에서 "이다"를 입력했는데
printf부분에서 자꾸 스트링 길이가 5 로 나옵니다
wcslen(L"이다")를 치면 2 라고 예상대로 나오고요
왜 그런지 아시는분 부탁합니다.

rgbi3307의 이미지

저도 관심이 가는 부분이라 님께서 올리신 C코드들을 모두 확인해 봤는데,

char str1[5];
//데이터타입 크기: 1byte x 5 == 5bytes
//영문자크기: 1byte x 1 == 1bytes
//한글크기: 1byte x 2 == 2bytes

wchar_t str2[5];
//데이터타입 크기: 2byte x 5 == 10bytes
//영문자크기: 2byte x 1 == 2bytes
//한글크기: 2byte x 2 == 4bytes

위와 같은 데이터 타입 크기 문제인듯 합니다.

From:
*알지비 (메일: rgbi3307(at)nate.com)
*커널연구회(http://www.kernel.bz/) 내용물들을 만들고 있음.
*((공부해서 남을 주려면 남보다 더많이 연구해야함.))

ddoman의 이미지

char str1[5];
//데이터타입 크기: 1byte x 5 == 5bytes
//영문자크기: 1byte x 1 == 1bytes
//한글크기: 1byte x 2 ==

한글크기는 2bytes가 아닙니다.
문자의 크기는 한글이냐, 영문이냐, 중국어냐랑 상관이 없으며, 해당 로케일의 문자코드에 정해집니다. 가령 UTF-32에서는 모든 문자가( UTF-32에서 정의된 ) 32bits이고, UTF-8에서는 가변길이인지라, 문자마다 차지하는 바이트의 갯수가 틀립니다.
한글 글자들의 크기는 인코딩 스타일에 따라 달라집니다. 글자자체가 정의하는 바이트 크기는 없습니다.

참고로 wchar_t는 좋은 선택이 아닐수도 있습니다: http://en.wikipedia.org/wiki/Wide_character

wchar_t자체는 데이터 타입일 뿐, 문자인코딩과는 아무런 연관성이 없기에,
wchar_t의 크기를 정의하기가 어렵습니다.어떤 인코딩에서는 모든 문자가 7비트( ASCII ), 어떤 인코딩에서는 16비트( UTF-16 ) 어느 인코딩에서는 모든 문자가 32bit( UTF-32 )입니다.

따라서, 위키페이지의 내용을 인용하자면,

ISO/IEC 10646:2003 Unicode standard 4.0은 portability를 생각하면,
wchar_t를 사용하지 말라고 합니다.

"The width of wchar_t is compiler-specific and ... portable ... any C or C++ ... SHOULD NOT use wchar_t for storing Unicode text.

babbab의 이미지

setlocal(LC_CTYPE,"kor");
을 더하니까 바로 3이라고 나오더군요 (\n 까지 포함해서 3)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.