1. 程式人生 > >string大小寫轉換

string大小寫轉換

利用transform函式轉換,包含在algorithm標頭檔案中

#include<iostream>
#include<algorithm>
using namespace std;
int main(){
    string s="Hello World";
    //轉換為大寫
    transform(s.begin(),s.end(),s.begin(),::toupper);
    cout<<s<<endl;
    
    //轉換為小寫
    transform(s.begin(),s.end(),s.begin(),::tolower);
    cout<<s<<endl;
    
    return 0;
}

執行結果