std::mblen
来自 cppreference.com
在头文件中定义 <cstdlib> |
||
int mblen( const char* s, std::size_t n ); |
||
确定以 s 指向的第一个字节为起始的多字节字符的大小(以字节为单位)。
如果 s 是一个空指针,则重置全局转换状态并确定是否使用移位序列。
此函数等效于调用 std::mbtowc(nullptr, s, n),除了 std::mbtowc 的转换状态不受影响。
内容 |
[编辑] 注释
每次调用 mblen
都会更新内部全局转换状态(一个类型为 std::mbstate_t 的静态对象,仅此函数知道)。如果多字节编码使用移位状态,则必须小心避免回溯或多次扫描。无论如何,多个线程不应该在没有同步的情况下调用 mblen
:可以使用 std::mbrlen 来代替。
[编辑] 参数
s | - | 指向多字节字符的指针 |
n | - | 可以检查的 s 中字节数量的限制 |
[编辑] 返回值
如果 s 不是空指针,则返回多字节字符中包含的字节数,或者 -1 如果 s 指向的第一个字节不构成有效的多字节字符,或者 0 如果 s 指向空字符 '\0'。
如果 s 是空指针,则将其内部转换状态重置为代表初始移位状态,并返回 0 如果当前多字节编码不是状态相关的(不使用移位序列),或者返回一个非零值,如果当前多字节编码是状态相关的(使用移位序列)。
[编辑] 示例
运行此代码
#include <clocale> #include <cstdlib> #include <iomanip> #include <iostream> #include <stdexcept> #include <string_view> // the number of characters in a multibyte string is the sum of mblen()'s // note: the simpler approach is std::mbstowcs(nullptr, s.c_str(), s.size()) std::size_t strlen_mb(const std::string_view s) { std::mblen(nullptr, 0); // reset the conversion state std::size_t result = 0; const char* ptr = s.data(); for (const char* const end = ptr + s.size(); ptr < end; ++result) { const int next = std::mblen(ptr, end - ptr); if (next == -1) throw std::runtime_error("strlen_mb(): conversion error"); ptr += next; } return result; } void dump_bytes(const std::string_view str) { std::cout << std::hex << std::uppercase << std::setfill('0'); for (unsigned char c : str) std::cout << std::setw(2) << static_cast<int>(c) << ' '; std::cout << std::dec << '\n'; } int main() { // allow mblen() to work with UTF-8 multibyte encoding std::setlocale(LC_ALL, "en_US.utf8"); // UTF-8 narrow multibyte encoding const std::string_view str = "z\u00df\u6c34\U0001f34c"; // or u8"zß水🍌" std::cout << std::quoted(str) << " is " << strlen_mb(str) << " characters, but as much as " << str.size() << " bytes: "; dump_bytes(str); }
可能的输出
"zß水🍌" is 4 characters, but as much as 10 bytes: 7A C3 9F E6 B0 B4 F0 9F 8D 8C
[编辑] 参见
将下一个多字节字符转换为宽字符 (函数) | |
返回下一个多字节字符的字节数,给定状态 (函数) | |
C 文档 for mblen
|