当前位置:   article > 正文

C++ string大小写转换以及transform,tolower,toupper,用法_std::tolower

std::tolower

C++中没有提供string类型的大小写转换,今天写了一下,方法很多。

当然可以s[i]+32 or s[i]-32

 

  1. #include <iostream>
  2. #include <string>
  3. #include <cctype>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8. string s = "Hello World";
  9. cout << s << endl;
  10. transform(s.begin(),s.end(),s.begin(),::toupper);//<span style="font-family:'Times New Roman';">::toupper使用定义在全局空间里的</span>to<span style="font-family:'Times New Roman';">upp<span style="font-family:'Times New Roman';">er</span></span>
  11. cout << s << endl;
  12. transform(s.begin(),s.end(),s.begin(),::tolower);//<font face="'Times New Roman'">::t<span style="font-family:'Times New Roman';">olo<span style="font-family:'Times New Roman';">wer<span style="font-family:'Times New Roman';">使用</span></span></span></font><span style="font-family:'Times New Roman';">定义在全局空间里的</span>to<span style="font-family:'Times New Roman';">lower</span>
  13. cout << s << endl;
  14. return 0;
  15. }


查阅了资料,toupper和tolower在C++中定义分别在std和cctype中

 

而定义在std中时原型为charT toupper (charT c, const locale& loc);

而transform函数:

作用是:将某操作应用于指定范围的每个元素。

transform函数有两个重载版本:

 

 

transform(first,last,result,op);//first是容器的首迭代器,last为容器的末迭代器,result为存放结果的容器,op为要进行操作的一元函数对象或sturct、class。

 

 

transform(first1,last1,first2,result,binary_op);//first1是第一个容器的首迭代器,last1为第一个容器的末迭代器,first2为第二个容器的首迭代器,result为存放结果的容器,binary_op为要进行操作的二元函数对象或sturct、class

如上,std中toupper的原型为一个二元函数,所以使用std::toupper会报错:unresolved overloaded function

但是可以这样使用:

 

  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4. using namespace std;
  5. int main()
  6. {
  7. string s = "Hello World";
  8. cout << s << endl;
  9. transform(s.begin(),s.end(),s.begin(),(int (*)(int))toupper);
  10. cout << s << endl;
  11. transform(s.begin(),s.end(),s.begin(),(int (*)(int))tolower);
  12. cout << s << endl;
  13. return 0;
  14. }

函数指针解决
 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/604476
推荐阅读
相关标签
  

闽ICP备14008679号