std::tolower
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cctype> 中定义
|
||
int tolower( int ch ); |
||
。给定的字符转换为小写根据当前安装的C语言环境的字符转换定义的规则.
原文:
Converts the given character to lowercase according to the character conversion rules defined by the currently installed C locale.
[编辑] 。参数。
ch | - | 。要转换的字符。
|
===。 返回值。===
。小写版本的小写版本
ch
或改性ch
如果没有被列在目前的C语言环境.原文:
Lowercase version of
ch
or unmodified ch
if no lowercase version is listed in the current C locale.[编辑] 。为例。
#include <iostream> #include <cctype> #include <clocale> int main() { char c = '\xb4'; // the character Ž in ISO-8859-15 // but ´ (acute accent) in ISO-8859-1 std::setlocale(LC_ALL, "en_US.iso88591"); std::cout << std::hex << std::showbase; std::cout << "in iso8859-1, tolower('0xb4') gives " << std::tolower(c) << '\n'; std::setlocale(LC_ALL, "en_US.iso885915"); std::cout << "in iso8859-15, tolower('0xb4') gives " << std::tolower(c) << '\n'; }
输出:
in iso8859-1, tolower('0xb4') gives 0xb4 in iso8859-15, tolower('0xb4') gives 0xb8
[编辑] 。另请参阅。
字符转换为大写 (函数) | |
converts a character to lowercase using the ctype facet of a locale (函数模板) | |
一个宽字符转换为小写 原文: converts a wide character to lowercase (函数) | |
C documentation for tolower
|