[ C++ ] 문자열 전체를 대문자로 변환하는 transform 함수와 toupper 함수
transform 함수 STL라이브러리에서 가져 왔으며 주어진 함수를 범위에 적용 할 수 있다. toupper 함수 string 문자 범위에서 작동하고 toupper 함수를 사용하여 각char를 대문자로 변환합니다. tolower 함수 string 문자 범위에서 작동하고 toupper 함수를 사용하여 각char를 소문자로 변환합니다. #include #include #include using namespace std; int main() { string s = "lksajdaliwudsk"; transform( s.begin(), s.end(), s.begin(), [](unsigned char c){ return toupper(c); }); cout
카테고리 없음
2021. 1. 24. 15:24