17

是否有将 C++ 字符串从大写字母转换为小写字母的内置函数?如果不将其转换为 cstring 并在每个字符上使用 tolower 是唯一的选择吗?

非常感谢您提前。

4

6 回答 6

31

如果boost是一个选项:

#include <boost/algorithm/string.hpp>    

std::string str = "wHatEver";
boost::to_lower(str);

否则,您可以使用std::transform

std::string str = "wHatEver";
std::transform(str.begin(), str.end(), str.begin(), ::tolower);

如果你有一些自定义的 locale-aware ,你也可以使用另一个函数tolower

于 2010-08-04T08:37:07.737 回答
17
std::transform(myString.begin(), myString.end(), myString.begin(), std::tolower);
于 2010-08-04T08:39:52.927 回答
2

就像ereOn 说的: std::transform(str.begin(), str.end(), str.begin(), std::tolower );

或通过 for_each: std::for_each(str.begin(), str.end(), std::tolower );

转换可能是两者中更好的。

于 2010-08-04T08:44:05.823 回答
1

对于这个问题,你可以使用 STL 的 transform 方法来解决它:

std::string str = "simple";
std::transform(str.begin(), str.end(), str.begin(), std::tolower);
于 2010-08-04T10:35:47.573 回答
1

我有一个实现,我发现它比 std::transform 更快,在 g++ -03 Fedora 18 中编译。我的示例转换 std::string

以秒为单位的表演时间:
转换耗时:11 秒
我的实施耗时:2 s
测试数据大小 = 26*15*9999999 个字符
inline void tolowerPtr(char *p) ;

inline void tolowerStr(std::string& s)
{char* c=const_cast<char*>(s.c_str());
size_t l = s.size();
  for(char* c2=c;c2<c+l;c2++)tolowerPtr(c2); 
};

inline void tolowerPtr(char *p) 
{
switch(*p)
{
  case 'A':*p='a'; return;
  case 'B':*p='b'; return;
  case 'C':*p='c'; return;
  case 'D':*p='d'; return;
  case 'E':*p='e'; return;
  case 'F':*p='f'; return;
  case 'G':*p='g'; return;
  case 'H':*p='h'; return;
  case 'I':*p='i'; return;
  case 'J':*p='j'; return;
  case 'K':*p='k'; return;
  case 'L':*p='l'; return;
  case 'M':*p='m'; return;
  case 'N':*p='n'; return;
  case 'O':*p='o'; return;
  case 'P':*p='p'; return;
  case 'Q':*p='q'; return;
  case 'R':*p='r'; return;
  case 'S':*p='s'; return;
  case 'T':*p='t'; return;
  case 'U':*p='u'; return;
  case 'V':*p='v'; return;
  case 'W':*p='w'; return;
  case 'X':*p='x'; return;
  case 'Y':*p='y'; return;
  case 'Z':*p='z'; return;
};
return ;
}

void testtransform( std::string& word )
{
std::string word2=word; 
time_t t;
time_t t2;
time(&t);
std::cout << "testtransform: start " << "\n";
int i=0;
for(;i<9999999;i++) 
{    word2=word;
    std::transform(word2.begin(), word2.end(), word2.begin(), ::tolower);
}
time(&t2);
std::cout << word2 << "\n";
std::cout << "testtransform: end " << i << ":"<< t2-t << "\n";
}

void testmytolower( std::string& word )
{
std::string word2=word; 
time_t t;
time_t t2;
time(&t);
std::cout << "testmytolower: start " << "\n";
int i=0;
for(;i<9999999;i++)
{   word2=word;
    cstralgo::tolowerStr(word2);
}
time(&t2);
std::cout << word2 << "\n";
std::cout << "testmytolower: end " << i << ":"<< t2-t << "\n";
}

int main(int argc, char* argv[])
{
   std::string word ="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
   word =word+word+word+word+word+word+word+word+word+word+word+word+word+word+word;
   testtransform( word);
   testmytolower( word);
   return 0;
}

我很高兴知道性能是否可以进一步提高。

于 2013-04-10T11:30:56.210 回答
0

没有内置函数可以执行此操作,并且由于 locales 等原因,执行此操作非常复杂。如果tolower满足您的需求,那可能是您最好的选择。

于 2010-08-04T08:36:49.063 回答