Difference between revisions of "cpp/string/byte/tolower"
From cppreference.com
m (Shorten template names. Use {{lc}} where appropriate.) |
m (Update links.) |
||
Line 42: | Line 42: | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/string/byte/ | + | {{dsc inc | cpp/string/byte/dsc toupper}} |
− | {{dsc inc | cpp/locale/ | + | {{dsc inc | cpp/locale/dsc tolower}} |
− | {{dsc inc | cpp/string/wide/ | + | {{dsc inc | cpp/string/wide/dsc towlower}} |
{{dsc see c | c/string/byte/tolower}} | {{dsc see c | c/string/byte/tolower}} | ||
{{dsc end}} | {{dsc end}} |
Revision as of 22:25, 31 May 2013
Defined in header <cctype>
|
||
int tolower( int ch ); |
||
Converts the given character to lowercase according to the character conversion rules defined by the currently installed C locale.
Contents |
Parameters
ch | - | character to be converted |
Return value
Lowercase version of ch
or unmodified ch
if no lowercase version is listed in the current C locale.
Example
Run this code
#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'; }
Output:
in iso8859-1, tolower('0xb4') gives 0xb4 in iso8859-15, tolower('0xb4') gives 0xb8
See also
converts a character to uppercase (function) | |
converts a character to lowercase using the ctype facet of a locale (function template) | |
converts a wide character to lowercase (function) | |
C documentation for tolower
|