「cpp/string/wide/wctrans」の版間の差分
提供: cppreference.com
細 (r2.7.3) (ロボットによる 追加: de, en, es, fr, it, pt, ru, zh) |
細 (Use {{lc}}. Update links. Various fixes.) |
||
9行: | 9行: | ||
===パラメータ=== | ===パラメータ=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| str |{{tr| Cの文字列は、目的のマッピングの名前を保持している。 |
{{tt|str}}の次の値は、すべてのCロケールでサポートされています。 | {{tt|str}}の次の値は、すべてのCロケールでサポートされています。 | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{hitem |{{tr| {{tt|str}}の値 | Value of {{tt|str}} }}| Effect }} |
− | {{ | + | {{| {{tt|"toupper"}} |{{tr| {{c|towupper}}によって使用されるマッピングを識別します | identifies the mapping used by {{c|towupper}} }}}} |
− | {{ | + | {{| {{tt|"tolower"}} |{{tr| {{c|towlower}}によって使用されるマッピングを識別します | identifies the mapping used by {{c|towlower}} }}}} |
− | {{ | + | {{end}} |
| C string holding the name of the desired mapping. | | C string holding the name of the desired mapping. | ||
The following values of {{tt|str}} are supported in all C locales: | The following values of {{tt|str}} are supported in all C locales: | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{hitem |{{tr| {{tt|str}}の値 | Value of {{tt|str}} }}| Effect }} |
− | {{ | + | {{| {{tt|"toupper"}} |{{tr| {{c|towupper}}によって使用されるマッピングを識別します | identifies the mapping used by {{c|towupper}} }}}} |
− | {{ | + | {{| {{tt|"tolower"}} |{{tr| {{c|towlower}}によって使用されるマッピングを識別します | identifies the mapping used by {{c|towlower}} }}}} |
− | {{ | + | {{end}} |
}}}} | }}}} | ||
− | {{ | + | {{end}} |
===値を返します=== | ===値を返します=== | ||
− | {{tr|{{c|std::wctrans_t}}{{ | + | {{tr|{{c|std::wctrans_t}}{{|std::towctrans}}は、現在のCロケールでサポートされているマッピングを指定していない場合は、現在のCロケールまたはゼロの名前マッピングに従ってワイド文字をマップする{{tt|str}}での使用に適したオブジェクト.|{{c|std::wctrans_t}} object suitable for use with {{|std::towctrans}} to map wide characters according to the named mapping of the current C locale or zero if {{tt|str}} does not name a mapping supported by the current C locale.}} |
===も参照してください=== | ===も参照してください=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| cpp/string/wide/towctrans}} |
− | {{ | + | {{see c | c/string/wide/wctrans}} |
− | {{ | + | {{end}} |
[[de:cpp/string/wide/wctrans]] | [[de:cpp/string/wide/wctrans]] |
2013年7月2日 (火) 16:03時点における版
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ <cwctype> で定義
|
||
std::wctrans_t wctrans( const char* str ); |
||
ワイド文字マッピングのLC_CTYPEカテゴリを記述するタイプstd::wctrans_tの値を構築します。これは、標準的なマッピングのいずれか、またはそのような
"tojhira"
または"tojkana"
などのロケール固有のマッピングであってもよい.Original:
Constructs a value of type std::wctrans_t that describes a LC_CTYPE category of wide character mapping. It may be one of the standard mappings, or a locale-specific mapping, such as
"tojhira"
or "tojkana"
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
パラメータ
str | - | Cの文字列は、目的のマッピングの名前を保持している。
Original: C string holding the name of the desired mapping.
The following values of
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
値を返します
std::wctrans_tstd::towctransは、現在のCロケールでサポートされているマッピングを指定していない場合は、現在のCロケールまたはゼロの名前マッピングに従ってワイド文字をマップする
str
での使用に適したオブジェクト.Original:
std::wctrans_t object suitable for use with std::towctrans to map wide characters according to the named mapping of the current C locale or zero if
str
does not name a mapping supported by the current C locale.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
も参照してください
指定された LC_CTYPE マッピングカテゴリに従って文字マッピングを行います (関数) | |
wctrans の C言語リファレンス
|