template< class CharT >
CharT toupper( CharT ch, const locale& loc );
Converts the character ch to uppercase if possible, using the conversion rules specified by the given locale's std::ctype facet.
[edit] Parameters ch - character loc - locale [edit] Return valueReturns the uppercase form of ch if one is listed in the locale, otherwise returns ch unchanged.
[edit] NotesOnly 1:1 character mapping can be performed by this function, e.g. the uppercase form of 'Ã' is (with some exceptions) the two-character string "SS", which cannot be obtained by std::toupper.
[edit] Possible implementation [edit] ExamplePossible output:
in the default locale, toupper(0x17f) = 0x17f in Unicode locale, toupper(0x17f) = 0x53[edit] See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4