将 C++ 中的字符串转换为大写

Convert a String In C++ To Upper Case(将 C++ 中的字符串转换为大写)

本文介绍了将 C++ 中的字符串转换为大写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将字符串转换为大写.我从谷歌上找到的例子只需要处理字符.

How could one convert a string to upper case. The examples I have found from googling only have to deal with chars.

推荐答案

Boost 字符串算法:

#include <boost/algorithm/string.hpp>
#include <string>

std::string str = "Hello World";

boost::to_upper(str);

std::string newstr = boost::to_upper_copy<std::string>("Hello World");

这篇关于将 C++ 中的字符串转换为大写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:将 C++ 中的字符串转换为大写

基础教程推荐