std::towlower
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwctype> 中定义
|
||
std::wint_t towlower( std::wint_t ch ); |
||
。给定的宽字符转换为小写,如果可能的话.
原文:
Converts the given wide character to lowercase, if possible.
目录 |
[编辑] 。参数。
ch | - | 。宽字符进行转换。
|
===。 返回值。===
。小写版本的小写版本
ch
或改性ch
如果没有被列在目前的C语言环境.原文:
Lowercase version of
ch
or unmodified ch
if no lowercase version is listed in the current C locale.[编辑] 。注释。
。只有1:1的字符映射可以通过此功能,例如希腊大写字母'Σ'有两个小写的形式,这取决于在一个字的位置上:“σ'和'ς'。呼叫std::towlower不能使用,在这种情况下,以获得正确的小写形式.
原文:
Only 1:1 character mapping can be performed by this function, e.g. the Greek uppercase letter 'Σ' has two lowercase forms, depending on the position in a word: 'σ' and 'ς'. A call to std::towlower cannot be used to obtain the correct lowercase form in this case.
[编辑] 。为例。
#include <iostream> #include <cwctype> #include <clocale> int main() { wchar_t c = L'\u0190'; // Latin capital open E ('Ɛ') std::cout << std::hex << std::showbase; std::cout << "in the default locale, towlower(" << (std::wint_t)c << ") = " << std::towlower(c) << '\n'; std::setlocale(LC_ALL, "en_US.utf8"); std::cout << "in Unicode locale, towlower(" << (std::wint_t)c << ") = " << std::towlower(c) << '\n'; }
输出:
in the default locale, towlower(0x190) = 0x190 in Unicode locale, towlower(0x190) = 0x25b
[编辑] 。另请参阅。
一个宽字符转换为大写 原文: converts a wide character to uppercase (函数) | |
converts a character to lowercase using the ctype facet of a locale (函数模板) | |
字符转换为小写 (函数) | |
C documentation for towlower
|