strlwr()函數是C語言中的內置函數,用於將給定的字符串轉換為小寫。
用法:
char *strlwr(char *str);
參數:
- str:這表示要轉換為小寫字母的給定字符串。
返回值:它返回將給定字符串str的字符轉換為小寫字母後獲得的修改後的字符串。
注意:這是一個非標準函數,僅適用於舊版本的MicrosoftC。
以下示例程序旨在說明C語言中的strlwr()函數:
示例1:
// C program to demonstrate
// example of strlwr() function
#include<stdio.h>
#include<string.h>
int main()
{
char str[ ] = "GEEKSFORGEEKS IS THE BEST";
// converting the given string into lowercase.
printf("%s\n",strlwr (str));
return 0;
}
輸出:
geeksforgeeks is the best
示例2:
// C program to demonstrate
// example of strlwr() function.
#include<stdio.h>
#include <string.h>
int main()
{
char str[] = "CompuTer ScienCe PoRTAl fOr geeKS";
printf("Given string is:%s\n",str);
printf("\nString after converting to the "
"lowercase is:%s",strlwr(str));
return 0;
}
輸出:
Given string is:CompuTer ScienCe PoRTAl fOr geeKS String after converting to the lowercase is:computer science portal for geeks
相關用法
- C++ c16rtomb()用法及代碼示例
- C++ mbrlen()用法及代碼示例
- C++ mbrtowc()用法及代碼示例
- C++ c32rtomb()用法及代碼示例
- C++ wcspbrk()用法及代碼示例
- C++ wcsrchr()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C++ strtoumax()用法及代碼示例
- C++ iswctype()用法及代碼示例
- C++ wctype()用法及代碼示例
- C++ strtoimax()用法及代碼示例
- C++ mbsrtowcs()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ feupdateenv()用法及代碼示例
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 strlwr() function in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。