std::tolower
来自 cppreference.com
定义在头文件 <cctype> 中 |
||
int tolower( int ch ); |
||
根据当前安装的 C 本地化定义的字符转换规则,将给定字符转换为小写。
在默认 "C" 本地化中,以下大写字母 ABCDEFGHIJKLMNOPQRSTUVWXYZ
将替换为相应的小写字母 abcdefghijklmnopqrstuvwxyz
。
内容 |
[编辑] 参数
ch | - | 要转换的字符。如果 ch 的值不能表示为 unsigned char 且不等于 EOF,则行为未定义 |
[编辑] 返回值
ch 的小写版本,如果没有小写版本列在当前的 C 本地化中,则为未修改的 ch。
[编辑] 备注
与来自 <cctype> 的所有其他函数一样,如果参数的值既不能表示为 unsigned char 也不等于 EOF,则 std::tolower
的行为未定义。要安全地使用这些函数与普通 char(或 signed char),应首先将参数转换为 unsigned char
char my_tolower(char ch) { return static_cast<char>(std::tolower(static_cast<unsigned char>(ch))); }
类似地,当迭代器的值类型为 char 或 signed char 时,它们不应该直接用于标准算法。相反,应首先将值转换为 unsigned char
std::string str_tolower(std::string s) { std::transform(s.begin(), s.end(), s.begin(), // static_cast<int(*)(int)>(std::tolower) // wrong // [](int c){ return std::tolower(c); } // wrong // [](char c){ return std::tolower(c); } // wrong [](unsigned char c){ return std::tolower(c); } // correct ); return s; }
[编辑] 示例
运行此代码
#include <cctype> #include <clocale> #include <iostream> int main() { unsigned 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
[编辑] 另请参阅
将字符转换为大写 (函数) | |
使用本地化的 ctype 面使用将字符转换为小写(函数模板) | |
将宽字符转换为小写 (函数) | |
C 文档 for tolower
|
[编辑] 外部链接
1. | ISO/IEC 8859-1. 来自维基百科。 |
2. | ISO/IEC 8859-15. 来自维基百科。 |