std::toupper
来自 cppreference.com
在头文件 <cctype> 中定义 |
||
int toupper( int ch ); |
||
根据当前安装的 C 本地化定义的字符转换规则,将给定的字符转换为大写。
在默认的 "C" 本地化中,以下小写字母 abcdefghijklmnopqrstuvwxyz
将被替换为对应的大写字母 ABCDEFGHIJKLMNOPQRSTUVWXYZ
。
内容 |
[编辑] 参数
ch | - | 要转换的字符。如果 ch 的值不能表示为 unsigned char 且不等于 EOF,则行为未定义。 |
[编辑] 返回值
已转换的字符或 ch,如果当前 C 本地化未定义任何大写版本。
[编辑] 注释
与来自 <cctype> 的所有其他函数一样,如果参数的值既不能表示为 unsigned char 也不等于 EOF,则 std::toupper
的行为未定义。为了安全地将这些函数与普通 char(或 signed char)一起使用,应首先将参数转换为 unsigned char
char my_toupper(char ch) { return static_cast<char>(std::toupper(static_cast<unsigned char>(ch))); }
类似地,当迭代器的值类型为 char 或 signed char 时,它们不应直接与标准算法一起使用。相反,应首先将值转换为 unsigned char
std::string str_toupper(std::string s) { std::transform(s.begin(), s.end(), s.begin(), // static_cast<int(*)(int)>(std::toupper) // wrong // [](int c){ return std::toupper(c); } // wrong // [](char c){ return std::toupper(c); } // wrong [](unsigned char c){ return std::toupper(c); } // correct ); return s; }
[编辑] 示例
运行此代码
#include <cctype> #include <climits> #include <clocale> #include <iostream> #include <ranges> int main() { for (auto bd{0}; unsigned char lc : std::views::iota(0, UCHAR_MAX)) if (unsigned char uc = std::toupper(lc); uc != lc) std::cout << lc << uc << (13 == ++bd ? '\n' : ' '); std::cout << "\n\n"; unsigned char c = '\xb8'; // the character ž in ISO-8859-15 // but ¸ (cedilla) in ISO-8859-1 std::setlocale(LC_ALL, "en_US.iso88591"); std::cout << std::hex << std::showbase; std::cout << "in iso8859-1, toupper('0xb8') gives " << std::toupper(c) << '\n'; std::setlocale(LC_ALL, "en_US.iso885915"); std::cout << "in iso8859-15, toupper('0xb8') gives " << std::toupper(c) << '\n'; }
输出
aA bB cC dD eE fF gG hH iI jJ kK lL mM nN oO pP qQ rR sS tT uU vV wW xX yY zZ in iso8859-1, toupper('0xb8') gives 0xb8 in iso8859-15, toupper('0xb8') gives 0xb4
[编辑] 另请参阅
将字符转换为小写 (函数) | |
使用本地化的 ctype 面来将字符转换为大写 (函数模板) | |
将宽字符转换为大写 (函数) | |
C 文档 针对 toupper
|
[编辑] 外部链接
1. | ISO/IEC 8859-1。来自维基百科。 |
2. | ISO/IEC 8859-15。来自维基百科。 |