「cpp/string/wide/wctrans」の版間の差分
提供: cppreference.com
細 (1版:Translate from the English version) |
細 (r2.7.3) (ロボットによる 追加: de, en, es, fr, it, pt, ru, zh) |
||
35行: | 35行: | ||
{{dcl list see c | c/string/wide/wctrans}} | {{dcl list see c | c/string/wide/wctrans}} | ||
{{dcl list end}} | {{dcl list end}} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
2012年11月2日 (金) 14:40時点における版
![]() |
このページは、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.
も参照してください
C documentation for wctrans
|