std::wstring_convert<Codecvt,Elem,Wide_alloc,Byte_alloc>:: converted
From cppreference.net
<
cpp
|
locale
|
wstring convert
C++
Text processing library
| Localization library | |||||||||||||||||||||||||
| Regular expressions library (C++11) | |||||||||||||||||||||||||
| Formatting library (C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
Localization library
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::wstring_convert
| Member functions | ||||
|
wstring_convert::converted
|
||||
|
ヘッダーで定義
<locale>
|
||
|
std::
size_t
converted
(
)
const
noexcept
;
|
||
直近の from_bytes() または to_bytes() によって正常に処理されたソース文字数を返します。
目次 |
戻り値
例
このコードを実行
#include <codecvt> #include <iostream> #include <locale> #include <string> int main() { std::string utf8 = "z\u00df\u6c34\U0001d10b"; // or u8"zß水𝄋" // or "\x7a\xc3\x9f\xe6\xb0\xb4\xf0\x9d\x84\x8b"; std::cout << "original UTF-8 string size: " << utf8.size() << '\n'; // the UTF-8 - UTF-32 standard conversion facet std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> cvt; // UTF-8 to UTF-32 std::u32string utf32 = cvt.from_bytes(utf8); std::cout << "UTF-32 string size: " << utf32.size() << '\n'; std::cout << "converted() == " << cvt.converted() << '\n'; // UTF-32 to UTF-8 utf8 = cvt.to_bytes(utf32); std::cout << "new UTF-8 string size: " << utf8.size() << '\n'; std::cout << "converted() == " << cvt.converted() << '\n'; }
出力:
original UTF-8 string size: 10 UTF-32 string size: 4 converted() == 10 new UTF-8 string size: 10 converted() == 4
不具合報告
以下の動作変更の欠陥報告書は、以前に公開されたC++規格に対して遡及的に適用されました。
| DR | 適用対象 | 公開時の動作 | 正しい動作 |
|---|---|---|---|
| LWG 2174 | C++11 |
wstring_convert::converted
はnoexceptであることが要求されていなかった
|
要求される |
関連項目
|
ワイド文字列をバイト文字列に変換する
(公開メンバ関数) |
|
|
バイト文字列をワイド文字列に変換する
(公開メンバ関数) |