• C++字符串大小写转换


    方法一:

    #include 
    #include 
    using namespace std;
    int main(){
        string str = "JFwxs";
        
        transform(str.begin(),str.end(),str.begin(),::toupper);
        cout<
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    方法二:

    #include 
    #include 
    using namespace std;
    int main(){
        string s;
        cin >> s;
        
    	// 转换为小写
    	_strlwr(s);
    	cout << s << endl;
    
    	// 转换为大写
    	_strupr(s);
    	cout << s << endl;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
  • 相关阅读:
    “智能与未来”2024世亚国际智能机器人展会(简称:世亚智博会)
    spring boot + mysql8 集成jpa实现增删改(包括分页)
    C++结合OpenCV进行图像处理与分类
    ol(openlayers)使用记录
    月份英文和简写
    STM32 J-LINK
    综合案列——产品模块布局
    计算机毕业设计Java棉花(源代码+数据库+系统+lw文档)
    【小嘟陪你刷题06】合并两个有序链表、链表分割、删除链表重复节点、链表的回文结构
    【RegNet】《Designing Network Design Spaces》
  • 原文地址:https://blog.csdn.net/weixin_60484917/article/details/127658925