C ++ tolower函数
概述
tolower C++ 函数定义在 cctype 头文件中。当给定一个大写字母时, tolower C++ 方法将其转换为相应的小写字母。
语法
我们将在C++程序中使用以下语法来使用 tolower()方法 :
tolower(<character>);
声明如下:C++中tolower函数的参数在 cctype头文件中()
int tolower(int ch);
C++ tolower()函数的参数
tolower C++函数需要一个字符作为参数,该字符必须转换为一个等价的小写字符。
在更基本的C++技术中,字符参数会自动类型转换为int类型(字符的ASCII值)。
tolower()函数的返回值
tolower C++函数返回:
对于参数的大小写等价字符,返回其ASCII值(a-z,A-Z)。
对于非字母字符,直接返回参数的ASCII值。非字母字符可以是任何不是字母的东西,如特殊字符(%,&,@等),数字值(1、2、6等)或特殊字符。
tolower()函数的未定义行为
如果参数的值既不是unsigned char,也不是EOF,则tolower() C++函数的行为未定义。
tolower()函数的示例
让我们看一些样例C++程序中如何实现tolower C++函数。
使用类型转换的tolower()
在C++中使用tolower方法,两个字母从大写转换为小写,而两个非字母则保持不变。
例如:
#include
#include
using namespace std;
int main()
{
char ch1 = 'P';
char ch2 = 'Q';
char ch3 = '7';
char ch4 = '@';
cout<< (char) tolower(ch1) << endl;
cout<< (char) tolower(ch2) << endl;
cout<< (char) tolower(ch3) << endl;
cout<< (char) tolower(ch4) << endl;
return 0;
}
输出
p
q
7
@
解释:
在上面的程序中,我们声明并初始化了四个char类型的变量。该程序使用 C++的tolower函数 ,将大写字符转换为小写字符。由于 tolower()函数 返回可比较的小写字符的 ASCII码 ,我们通过将返回值强制类型转换为char类型来打印小写字符。
不使用类型转换的tolower()
使用 C++的 tolower函数 ,我们将四个字母的大小写从大写转换为小写。
例如:
#include
#include
using namespace std;
int main()
{
char ch1 = 'B';
char ch2 = 'Y';
char ch3 = '2';
char ch4 = '@';
cout<< tolower(ch1) << endl;
cout<< tolower(ch2) << endl;
cout<< tolower(ch3) << endl;
cout<< tolower(ch4) << endl;
return 0;
}
输出
98
121
50
64
解释:
在上面的程序中,我们声明并初始化了四个char变量。在程序中,我们使用 tolower C++函数 将大写字母转换为小写字母,但我们没有对tolower函数返回的值进行 类型转换 ,该值是相应 ASCII值 的等价形式。因此,我们得到的结果是char变量相应值的等价 ASCII码 。
将tolower()使用到字符串中
下面的程序中使用 tolower C++函数 来将一个完整的字符串 (char数组) 转换为 小写字符串 。
示例:
#include
#include
#include
using namespace std;
int main()
{
char *str = "Saswat is from the INDIA";
char ch;
cout << "this string is mixed with upper and lower case \"" <
输出
this string is mixed with upper and lower case "Saswat is from the INDIA"
it is pure lower case string: "saswat is from the india"
解释:
在上述程序中,已经声明并初始化了一个字符数组。该程序使用 tolower C++ 函数 和for循环将字符串的所有大写字符转换为小写字符。输出包括大小写混合的字符串和整个小写字符串。
结论
- 为了在 C++程序 中使用 tolower C++方法 ,必须包含 cctype头文件 。
- 通过 tolower C++方法 将 大写字符 更改为相应的小写字符,该方法接受一个字符参数。
- 如果参数的值既不是 unsigned char 也不是 EOF ,则 tolower() C++函数 的行为是未定义的。
- 由于 tolower() C++方法 返回小写字符的 ASCII码 ,因此必须首先将其转换为char类型。