大小写转换——islower/isupper或者tolwer/toupper函数的用法

简介: 大小写转换——islower/isupper或者tolwer/toupper函数的用法

大小写转换常用函数C++

islower/isupper函数

char ch1 = 'A';
char ch2 = 'b';

//使用islower函数判断字符是否为小写字母
if(islower(ch1)){
    cout << ch1 << "is a lowercase letter." << end1;
} else{
    cout << ch1 << "is not a lowercase letter." << end1;
}
//使用isupper函数判断字符是否为大写字母
if(isupper(ch2)){
    cout << ch2 << "is a uppercase letter." << end1;
} else{
    cout << ch2 << "is not a uppercase letter." << end1;
}

tolwer/toupper函数

char ch1 = 'A';
char ch2 = 'b';
//使用tolower函数将字符转换为小写字母
char lowercaseCh1 = tolwer(ch1);
cout << "tolower of" << ch1 << "is" << lowercaseCh1 << end1;

//使用toupper函数将字符转换为大写字母
char uppercaseCh2 = toupper(ch2);
cout << "uppercase of" << ch2 << "is" << uppercaseCh1<<end1;

实例

#include<bits/stdc++.h>
using namespace std;
char covertedCh(char ch){
  if(islower(ch)ch = toupper(ch));
  else if(isupper(ch)ch = tolower(ch));
}
int main()
{
    string s; getline(cin,s);
    for(auto &i : s)
        i = covertedCh(i);
    cout << s << end1;
    return 0;
}


相关文章
|
Python
Python函数isdigit()--判断字符串是否为数字
Python函数isdigit()--判断字符串是否为数字
224 0
|
8月前
python-capitalize() 方法:将字符串的第一个字符转换为大写,其余字符转换为小写
python-capitalize() 方法:将字符串的第一个字符转换为大写,其余字符转换为小写
45 0
|
C语言 Python
字符函数和字符串函数(下)
字符函数和字符串函数(下)
64 0
字符函数和字符串函数(下)
|
C语言
详解字符函数和字符串函数-2
详解字符函数和字符串函数
57 0
详解字符函数和字符串函数-1
详解字符函数和字符串函数
51 0
|
存储 安全
常用的字符函数和字符串函数
常用的字符函数和字符串函数
104 0
|
存储 C语言
字符串函数和字符函数
字符串函数和字符函数
|
C语言
常用的字符函数和字符串函数汇总
C语言中对字符和字符串的处理很是频繁,但是C语言本身是没有字符串类型的,字符串通常放在 常量字符串 中或者 字符数组 中。 字符串常量 适用于那些对它不做修改的字符串函数。
常用的字符函数和字符串函数汇总
字符函数和字符串函数(下)——“C”
字符函数和字符串函数(下)——“C”

热门文章

最新文章