gpt4 book ai didi

c++ - 如何更改 C++ 中字符串的大小写?

转载 作者:太空狗 更新时间:2023-10-29 19:38:15 24 4
gpt4 key购买 nike

我有一个字符串,其中可能包含数字以及大小写字母。我需要将所有大写字母转换为小写字母,反之亦然。一个人会怎么做呢?

最佳答案

这是一种无需提升的方法:

#include <string>
#include <algorithm>
#include <cctype>
#include <iostream>

char change_case (char c) {
if (std::isupper(c))
return std::tolower(c);
else
return std::toupper(c);
}

int main() {
std::string str;
str = "hEllo world";
std::transform(str.begin(), str.end(), str.begin(), change_case);
std::cout << str;
return 0;
}

关于c++ - 如何更改 C++ 中字符串的大小写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4084458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com