string的学习

原: https://blog.csdn.net/qq_37941471/article/details/82107077

一. string的构造函数的形式:

string str:生成空字符串

string s(str):生成字符串为str的复制品

string s(str, strbegin,strlen):将字符串str中从下标strbegin开始、长度为strlen的部分作为字符串初值

string s(cstr, char_len):以C_string类型cstr的前char_len个字符串作为字符串s的初值

string s(num ,c):生成num个c字符的字符串

string s(str, stridx):将字符串str中从下标stridx开始到字符串结束的位置作为字符串初值

eg:

    string str1;               //生成空字符串

    string str2("123456789");  //生成"1234456789"的复制品

    string str3("12345", 0, 3);//结果为"123"

    string str4("012345", 5);  //结果为"01234"

    string str5(5, '1');       //结果为"11111"

 string str6(str2, 2);      //结果为"3456789"

二. string的大小和容量:

1. size()和length():返回string对象的字符个数,他们执行效果相同。

2. max_size():返回string对象最多包含的字符数,超出会抛出length_error异常

3. capacity():重新分配内存之前,string对象能包含的最大字符数

三. string的字符串比较:

1. C ++字符串支持常见的比较操作符(>,>=,<,<=,==,!=),甚至支持string与c-string的比较(如 str<”hello”)。 在使用>,>=,<,<=这些操作符的时候是根据“当前字符特性”将字符按字典顺序进行逐一得比较。字典排序靠前的字符小, 比较的顺序是从前向后比较,遇到不相等的字符就按这个位置上的两个字符的比较结果确定两个字符串的大小(前面减后面)同时,string (“aaaa”) <string(aaaaa)。   

2. 另一个功能强大的比较函数是成员函数compare()。他支持多参数处理,支持用索引值和长度定位子串来进行比较。他返回一个整数来表示比较结果,返回值意义如下:0:相等 1:大于 -1:小于 (A的ASCII码是65,a的ASCII码是97)

四. string的插入:push_back() 和 insert()

 1 void  test4(){
 2 
 3     string s1;
 4 
 5     // 尾插一个字符
 6 
 7     s1.push_back('a');
 8 
 9     s1.push_back('b');
10 
11     s1.push_back('c');
12 
13     cout<<"s1:"<<s1<<endl; // s1:abc
14 
15  
16 
17     // insert(pos,char):在制定的位置pos前插入字符char
18 
19     s1.insert(s1.begin(),'1');
20 
21     cout<<"s1:"<<s1<<endl; // s1:1abc
22 
23 }

五、string拼接字符串:append() & + 操作符

 1 void test5(){
 2 
 3     // 方法一:append()
 4 
 5     string s1("abc");
 6 
 7     s1.append("def");
 8 
 9     cout<<"s1:"<<s1<<endl; // s1:abcdef
10 
11  
12 
13     // 方法二:+ 操作符
14 
15     string s2 = "abc";
16 
17     /*s2 += "def";*/
18 
19     string s3 = "def";
20 
21     s2 += s3.c_str();
22 
23     cout<<"s2:"<<s2<<endl; // s2:abcdef
24 
25 }

六、 string的遍历:借助迭代器 或者 下标法

 1 void test6(){
 2 
 3     string s1("abcdef"); // 调用一次构造函数
 4 
 5  
 6 
 7     // 方法一:下标法
 8 
 9  
10 
11     for( int i = 0; i < s1.size() ; i++ ){
12 
13         cout<<s1[i];
14 
15     }
16 
17     cout<<endl;
18 
19  
20 
21     // 方法二:正向迭代器
22 
23  
24 
25     string::iterator iter = s1.begin();
26 
27     for( ; iter < s1.end() ; iter++){
28 
29         cout<<*iter;
30 
31     }
32 
33     cout<<endl;
34 
35  
36 
37     // 方法三:反向迭代器
38 
39     string::reverse_iterator riter = s1.rbegin();
40 
41     for( ; riter < s1.rend() ; riter++){
42 
43         cout<<*riter;
44 
45     }
46 
47     cout<<endl;
48 
49 }

七、 string的删除:erase()

1. iterator erase(iterator p);//删除字符串中p所指的字符

2. iterator erase(iterator first, iterator last);//删除字符串中迭代器

区间[first,last)上所有字符

3. string& erase(size_t pos = 0, size_t len = npos);//删除字符串中从索引

位置pos开始的len个字符

4. void clear();//删除字符串中所有字符

 1 void test6(){
 2 
 3     string s1 = "123456789";
 4 
 5     // s1.erase(s1.begin()+1);              // 结果:13456789
 6 
 7     // s1.erase(s1.begin()+1,s1.end()-2);   // 结果:189
 8 
 9     s1.erase(1,6);                       // 结果:189
10 
11     string::iterator iter = s1.begin();
12 
13     while( iter != s1.end() ){
14 
15         cout<<*iter;
16 
17         *iter++;
18 
19     }
20 
21     cout<<endl;
22 
23 }

八、 string的字符替换:

1. string& replace(size_t pos, size_t n, const char *s);//将当前字符串

从pos索引开始的n个字符,替换成字符串s

2. string& replace(size_t pos, size_t n, size_t n1, char c); //将当前字符串从pos索引开始的n个字符,替换成n1个字符c

3. string& replace(iterator i1, iterator i2, const char* s);//将当前字符串[i1,i2)区间中的字符串替换为字符串s

 1 void test7(){
 2 
 3     string s1("hello,world!");
 4 
 5     cout<<s1.size()<<endl;                     // 结果:12
 6 
 7     s1.replace(s1.size()-1,1,1,'.');           // 结果:hello,world.
 8 
 9  
10 
11     // 这里的6表示下标  5表示长度
12 
13     s1.replace(6,5,"girl");                    // 结果:hello,girl.
14 
15     // s1.begin(),s1.begin()+5 是左闭右开区间
16 
17     s1.replace(s1.begin(),s1.begin()+5,"boy"); // 结果:boy,girl.
18 
19     cout<<s1<<endl;
20 
21 }

九、 string的大小写转换:tolower()和toupper()函数 或者 STL中的transform算法

方法一:使用C语言之前的方法,使用函数,进行转换

 1 #include <iostream>
 2 
 3 #include <string>
 4 
 5 using namespace std;
 6 
 7 int main(){
 8 
 9     string s = "ABCDEFG";
10 
11     for( int i = 0; i < s.size(); i++ ){
12 
13         s[i] = tolower(s[i]);
14 
15     }
16 
17     cout<<s<<endl;
18 
19     return 0;
20 
21 }

方法二:通过STL的transform算法配合的toupper和tolower来实现该功能

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

十、 string的查找:find

1. size_t find (constchar* s, size_t pos = 0) const;

  //在当前字符串的pos索引位置开始,查找子串s,返回找到的位置索引,

    -1表示查找不到子串

2. size_t find (charc, size_t pos = 0) const;

  //在当前字符串的pos索引位置开始,查找字符c,返回找到的位置索引,

    -1表示查找不到字符

3. size_t rfind (constchar* s, size_t pos = npos) const;

  //在当前字符串的pos索引位置开始,反向查找子串s,返回找到的位置索引,

    -1表示查找不到子串

4. size_t rfind (charc, size_t pos = npos) const;

  //在当前字符串的pos索引位置开始,反向查找字符c,返回找到的位置索引,-1表示查找不到字符

5. size_tfind_first_of (const char* s, size_t pos = 0) const;

  //在当前字符串的pos索引位置开始,查找子串s的字符,返回找到的位置索引,-1表示查找不到字符

6. size_tfind_first_not_of (const char* s, size_t pos = 0) const;

  //在当前字符串的pos索引位置开始,查找第一个不位于子串s的字符,返回找到的位置索引,-1表示查找不到字符

7. size_t find_last_of(const char* s, size_t pos = npos) const;

  //在当前字符串的pos索引位置开始,查找最后一个位于子串s的字符,返回找到的位置索引,-1表示查找不到字符

8. size_tfind_last_not_of (const char* s, size_t pos = npos) const;

 //在当前字符串的pos索引位置开始,查找最后一个不位于子串s的字符,返回找到的位置索引,-1表示查找不到子串

void test8()

{

    string s("dog bird chicken bird cat");

    //字符串查找-----找到后返回首字母在字符串中的下标

    // 1. 查找一个字符串

    cout << s.find("chicken") << endl;        // 结果是:9

    // 2. 从下标为6开始找字符'i',返回找到的第一个i的下标

    cout << s.find('i',6) << endl;            // 结果是:11

    // 3. 从字符串的末尾开始查找字符串,返回的还是首字母在字符串中的下标

    cout << s.rfind("chicken") << endl;       // 结果是:9

    // 4. 从字符串的末尾开始查找字符

    cout << s.rfind('i') << endl;             // 结果是:18-------因为是从末尾开始查找,所以返回第一次找到的字符

    // 5. 在该字符串中查找第一个属于字符串s的字符

    cout << s.find_first_of("13br98") << endl;  // 结果是:4---b

    // 6. 在该字符串中查找第一个不属于字符串s的字符------先匹配dog,然后bird匹配不到,所以打印4

    cout << s.find_first_not_of("hello dog 2006") << endl; // 结果是:4

    cout << s.find_first_not_of("dog bird 2006") << endl;  // 结果是:9

    // 7. 在该字符串最后中查找第一个属于字符串s的字符

    cout << s.find_last_of("13r98") << endl;               // 结果是:19

    // 8. 在该字符串最后中查找第一个不属于字符串s的字符------先匹配t--a---c,然后空格匹配不到,所以打印21

    cout << s.find_last_not_of("teac") << endl;            // 结果是:21

}

十一、 string的排序:sort(s.begin(),s.end())

 1 #include <iostream>
 2 
 3 #include <algorithm>
 4 
 5 #include <string>
 6 
 7 using namespace std;
 8 
 9 void test9()
10 
11 {
12 
13     string s = "cdefba";
14 
15     sort(s.begin(),s.end());
16 
17     cout<<"s:"<<s<<endl;     // 结果:abcdef
18 
19 }

十二、 string的分割/截取字符串:strtok() & substr()

 1 strtok():分割字符串
 2 
 3 void test10(){
 4 
 5     char str[] = "I,am,a,student; hello world!";
 6 
 7     const char *split = ",; !";
 8 
 9     char *p2 = strtok(str,split);
10 
11     while( p2 != NULL ){
12 
13         cout<<p2<<endl;
14 
15         p2 = strtok(NULL,split);
16 
17     }
18 
19 }
20 
21 void test11(){
22 
23     string s1("0123456789");
24 
25     string s2 = s1.substr(2,5); // 结果:23456-----参数5表示:截取的字符串的长度
26 
27     cout<<s2<<endl;
28 
29 }

猜你喜欢

转载自www.cnblogs.com/meanttobe/p/11265956.html