towlower
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wctype.h> 中定义
|
||
wint_t towlower( 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的字符映射可以通过此功能,例如希腊大写字母'Σ'有两个小写的形式,这取决于在一个字的位置上:“σ'和'ς'。呼叫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 towlower cannot be used to obtain the correct lowercase form in this case.
[编辑] 另请参阅
一个宽字符转换为大写 原文: converts a wide character to uppercase (函数) | |
字符转换为小写 (函数) | |
C++ documentation for towlower
|