Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      mblen

      From cppreference.com
      <c‎ |string‎ |multibyte
       
       
       
       
      Defined in header<stdlib.h>
      int mblen(constchar* s,size_t n);

      Determines the size, in bytes, of the multibyte character whose first byte is pointed to bys.

      Ifs is a null pointer,resets the global conversion state and(until C23) determined whether shift sequences are used.

      This function is equivalent to the callmbtowc((wchar_t*)0, s, n), except that conversion state ofmbtowc is unaffected.

      Contents

      [edit]Parameters

      s - pointer to the multibyte character
      n - limit on the number of bytes in s that can be examined

      [edit]Return value

      Ifs is not a null pointer, returns the number of bytes that are contained in the multibyte character or-1 if the first bytes pointed to bys do not form a valid multibyte character or0 ifs is pointing at the null charcter'\0'.

      Ifs is a null pointer,resets its internal conversion state to represent the initial shift state and(until C23) returns0 if the current multibyte encoding is not state-dependent (does not use shift sequences) or a non-zero value if the current multibyte encoding is state-dependent (uses shift sequences).

      [edit]Notes

      Each call tomblen updates the internal global conversion state (a static object of typembstate_t, only known to this function). If the multibyte encoding uses shift states, care must be taken to avoid backtracking or multiple scans. In any case, multiple threads should not callmblen without synchronization:mbrlen may be used instead.

      (until C23)

      mblen is not allowed to have an internal state.

      (since C23)

      [edit]Example

      Run this code
      #include <locale.h>#include <stdio.h>#include <stdlib.h>#include <string.h> // the number of characters in a multibyte string is the sum of mblen()'s// note: the simpler approach is mbstowcs(NULL, str, sz)size_t strlen_mb(constchar* ptr){size_t result=0;constchar* end= ptr+strlen(ptr);    mblen(NULL,0);// reset the conversion statewhile(ptr< end){int next= mblen(ptr, end- ptr);if(next==-1){perror("strlen_mb");break;}        ptr+= next;++result;}return result;} void dump_bytes(constchar* str){for(constchar* end= str+strlen(str); str!= end;++str)printf("%02X ",(unsignedchar)str[0]);printf("\n");} int main(void){setlocale(LC_ALL,"en_US.utf8");constchar* str="z\u00df\u6c34\U0001f34c";printf("The string\"%s\" consists of %zu characters, but %zu bytes: ",            str, strlen_mb(str),strlen(str));    dump_bytes(str);}

      Possible output:

      The string "zß水🍌" consists of 4 characters, but 10 bytes: 7A C3 9F E6 B0 B4 F0 9F 8D 8C

      [edit]References

      • C17 standard (ISO/IEC 9899:2018):
      • 7.22.7.1 The mblen function (p: 260)
      • C11 standard (ISO/IEC 9899:2011):
      • 7.22.7.1 The mblen function (p: 357)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.20.7.1 The mblen function (p: 321)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 4.10.7.1 The mblen function

      [edit]See also

      converts the next multibyte character to wide character
      (function)[edit]
      (C95)
      returns the number of bytes in the next multibyte character, given state
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/string/multibyte/mblen&oldid=146551"

      [8]ページ先頭

      ©2009-2025 Movatter.jp