C++ 문자열 소문자로 변환

(C++ lowercase() 구현에서 넘어옴)

1 개요[ | ]

C++ 문자열 소문자로 변환
C++ strtolower() 구현
C++ lowercase() 구현
#include <iostream>
using namespace std;
int main() {
    string str = "Hello World!";
    for(char& c: str) c = tolower(c);
    cout << str << endl; // hello world!
}
#include <iostream>
using namespace std;
string strtolower(string str) {
    for(auto &c: str) c = tolower(c);
    return str;
}
int main() {
    cout << strtolower("Hello World!") << endl; // hello world!
}
#include <iostream>
#include <algorithm>
using namespace std;
string strtolower(const string str) {
    string ret = str;
    transform(ret.begin(), ret.end(),ret.begin(), ::tolower);
    return ret;
}
int main() {
    cout << strtolower("Hello World!") << endl; // hello world!
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}