原文:http://www.cplusplus.com/reference/clibrary/cctype/tolower/
int tolower ( int c );
将大写字母转换成小写字母
如果参数c是大写字母,将参数c转换成对应的小写字母。如果不能转换,则该参数保留原值不变。
请注意哪些字符被认为是字母依赖于当前正在使用的locale地区设置;在默认的c语言地区设置下,以下任何大写字母中的一个:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z,都会被分别转换成:a b c d e f g h i j k l m n o p q r s t u v w x y z。
在C++语言中,一个特定于语言环境模版版本的tolower函数存在于头文件<locale>。
参数
c
待转换的大写字母,被转换成一个整数或者EOF结束符。
返回值
参数c对应的小写字母,或者未改变的参数c。这个值以int值返回,并且可以被强制转换成char。
实例:
/* tolower example */ #include <stdio.h> #include <ctype.h> int main () { int i=0; char str[]="Test String.\n"; char c; while (str[i]) { c=str[i]; putchar (tolower(c)); i++; } return 0; }
输出:
test string.
请参阅:
toupper 将小写字母转换成大写字母(函数)
isupper 检测字符是否为大写字母(函数)
islower 检测字符是否为小写字母(函数)
isalpha 检查字符是否是字母(函数)