命名空间
变体
操作

std::toupper(std::locale)

来自 cppreference.com
< cpp‎ | locale
在头文件 <locale> 中定义
template< class CharT >
CharT toupper( CharT ch, const locale& loc );

如果可能,使用给定区域设置的 std::ctype 方面指定的转换规则将字符 ch 转换为大写。

内容

[编辑] 参数

ch - 字符
loc - locale

[编辑] 返回值

如果区域设置中列出了 ch 的大写形式,则返回 ch 的大写形式,否则返回 ch 本身。

[编辑] 注释

此函数只能执行 1:1 字符映射,例如 'ß' 的大写形式(除了一些例外情况)是双字符字符串 "SS",这无法通过 std::toupper 获得。

[编辑] 可能的实现

template<class CharT>
CharT toupper(CharT ch, const std::locale& loc)
{
    return std::use_facet<std::ctype<CharT>>(loc).toupper(ch);
}

[编辑] 示例

#include <cwctype>
#include <iostream>
#include <locale>
 
int main()
{
    wchar_t c = L'\u017f'; // Latin small letter Long S ('ſ')
 
    std::cout << std::hex << std::showbase;
 
    std::cout << "in the default locale, toupper(" << (std::wint_t)c << ") = "
              << (std::wint_t)std::toupper(c, std::locale()) << '\n';
 
    std::cout << "in Unicode locale, toupper(" << (std::wint_t)c << ") = "
              << (std::wint_t)std::toupper(c, std::locale("en_US.utf8")) << '\n';
}

可能的输出

in the default locale, toupper(0x17f) = 0x17f
in Unicode locale, toupper(0x17f) = 0x53

[编辑] 另请参阅

使用区域设置的 ctype 方面将字符转换为小写
(函数模板) [编辑]
将字符转换为大写
(函数) [编辑]
将宽字符转换为大写
(函数) [编辑]