有没有相当于' strupr' Mac中的Xcode(C ++)?

时间:2018-03-12 17:11:23

标签: c++ xcode macos

我试图使用我在网上找到的代码来获得更大的算法,而Xcode并不支持此功能。我尝试使用库curses.h(因为在Xcode中没有定义conio.h)但是我找不到相应的命令。

2 个答案:

答案 0 :(得分:3)

在Xcode中没有内置函数来大写字符串,但是您可以轻松地编写一个字符串:

std::string strToUpper(std::string str)
{
    std::transform(str.begin(), str.end(), str.begin(), ::toupper);

    return str;
}

答案 1 :(得分:0)

试试这样。

#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");