字符串大小写转换c++
时间: 2023-08-20 12:10:51 浏览: 98
C++语法实践题(共十套).doc
在 C++ 中,可以使用 `toupper` 和 `tolower` 函数来进行字符串的大小写转换。下面是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
#include <cctype>
int main() {
std::string str = "Hello, World!";
// 转换为大写
for (char& c : str) {
c = std::toupper(c);
}
std::cout << "转换为大写: " << str << std::endl;
// 转换为小写
for (char& c : str) {
c = std::tolower(c);
}
std::cout << "转换为小写: " << str << std::endl;
return 0;
}
```
运行以上代码,输出将会是:
```
转换为大写: HELLO, WORLD!
转换为小写: hello, world!
```
这样你就可以在 C++ 中实现字符串的大小写转换了。
阅读全文