字符串
文章平均质量分 69
年少无知的无知少年
相看两不厌,唯有敬亭山。
展开
-
c++ string 字符大小写的转换
c++中的string类对象并没有自带的方法进行字符大小写转换,进行大小写转换的方法很多,这里我们提供一个通过algorithm中的transform函数对string对象进行字符的大小写转换。#include #include #include using namespace std;int main(){ string str="how are you"; tr原创 2017-08-02 16:43:59 · 28878 阅读 · 2 评论 -
c++ string对象 空格替换
在剑指offer中看到将字符串中的空格进行替换,文章使用的是字符数组进行的操作,在这里我进行了尝试改进,使用string类对象,将剑指offer一书中编写的代码进行了改进,仅供参考,不喜勿碰^_^_^_^_^_^_^_^从屏幕输入中获取用户输入,将用户输入的字符串中的空格使用“%20”字符串代替。#include #include using namespace std;原创 2017-08-02 20:42:37 · 2416 阅读 · 0 评论