📜  C++ tolower()

📅  最后修改于: 2020-09-25 07:09:24             🧑  作者: Mango

C++中的tolower() 函数将给定字符转换为小写。

tolower()原型

int tolower(int ch);

tolower() 函数将ch转换为其小写版本(如果存在)。如果字符的小写版本不存在,则它将保持不变。从A到Z的大写字母分别转换为从a到z的小写字母。

如果ch的值不能表示为无符号字符或不等于EOF,则tolower()的行为是不确定的。

它在头文件中定义。

tolower()参数

ch :要转换的字符

tolower()返回值

tolower() 函数返回ch的小写版本(如果存在)。否则返回ch

示例:tolower() 函数的工作方式

#include 
#include 
#include 
#include 

using namespace std;

int main()
{
    char str[] = "John is from USA.";

    cout << "The lowercase version of \"" << str << "\" is " << endl;

    for (int i=0; i

运行该程序时,输出为:

The lowercase version of "John is from USA." is 
john is from usa.