C++ String操作

1.初始化

    string s1 = "";
    string s2 = "Hello";
    string s3(4,'k');
    string s4("12345678",1,3);
    
    cout << "s1:" <

输出:

s1:
s2:Hello
s3:kkkk
s4:234

2.string对象赋值

与初始化不同,使用assign可以修改已经创建的string对象的值;

    string s5,s6,s7,s8;
    s5.assign(s2);
    s6.assign(s5,1,3);
    s7.assign(4,'k');
    s8.assign("12345678",1,3);

    cout << "s5:" <

输出:

s5:Hello
s6:ell
s7:kkkk
s8:234

3.string长度

    cout << "s5:" <

输出:

s5:5
s6:3

4.string对象中字符串的连接

    s2 += s3; //字符串+ 
    cout << "s2:" <

输出:

s2:Hellokkkk
s11:abcd1234
s11:abcd1234234
s11:abcd1234234kkkk
s11:abcd1234234kkkk234

5.交换string对象的内容

    s1.assign("west");
    s2.assign("east");
    s1.swap(s2);
    cout << "s1:" <

输出:

s1:east
s2:west

6.查找子串和字符

string 类有一些查找子串和字符的成员函数,它们的返回值都是子串或字符在 string 对象字符串中的位置(即下标)。如果查不到,则返回 string::npos。string: :npos 是在 string 类中定义的一个静态常量。这些函数如下:

find:从前往后查找子串或字符出现的位置。
rfind:从后往前查找子串或字符出现的位置。
find_first_of:从前往后查找何处出现另一个字符串中包含的字符。例如:
s1.find_first_of("abc");  //查找s1中第一次出现"abc"中任一字符的位置
find_last_of:从后往前查找何处出现另一个字符串中包含的字符。
find_first_not_of:从前往后查找何处出现另一个字符串中没有包含的字符。
find_last_not_of:从后往前查找何处出现另一个字符串中没有包含的字符。
1.  #include 
2.  #include 
3.  u[sin](http://c.biancheng.net/ref/sin.html)g namespace std;
4.  int main()
5.  {
6.  string  s1("Source Code");
7.  int n;
8.  if ((n = s1.find('u')) != string::npos) //查找 u 出现的位置
9.  cout << "1) " << n << "," << s1.substr(n) << endl;
10.  //输出 l)2,urce Code
11.  if ((n = s1.find("Source", 3)) == string::npos)
12.  //从下标3开始查找"Source",找不到
13.  cout << "2) " << "Not Found" << endl;  //输出 2) Not Found
14.  if ((n = s1.find("Co")) != string::npos)
15.  //查找子串"Co"。能找到,返回"Co"的位置
16.  cout << "3) " << n << ", " << s1.substr(n) << endl;
17.  //输出 3) 7, Code
18.  if ((n = s1.find_first_of("ceo")) != string::npos)
19.  //查找第一次出现或 'c'、'e'或'o'的位置
20.  cout << "4) " << n << ", " << s1.substr(n) << endl;
21.  //输出 4) l, ource Code
22.  if ((n = s1.find_last_of('e')) != string::npos)
23.  //查找最后一个 'e' 的位置
24.  cout << "5) " << n << ", " << s1.substr(n) << endl;  //输出 5) 10, e
25.  if ((n = s1.find_first_not_of("eou", 1)) != string::npos)
26.  //从下标1开始查找第一次出现非 'e'、'o' 或 'u' 字符的位置
27.  cout << "6) " << n << ", " << s1.substr(n) << endl;
28.  //输出 6) 3, rce Code
29.  return 0;
30.  }

7.替换子串

replace 成员函数可以对 string 对象中的子串进行替换,返回值为对象自身的引用。例如:

    string s1("Real Steel");
    s1.replace(1, 3, "123456", 2, 4);  //用 "123456" 的子串(2,4) 替换 s1 的子串(1,3)
    cout << s1 << endl;  //输出 R3456 Steel
    string s2("Harry Potter");
    s2.replace(2, 3, 5, '0');  //用 5 个 '0' 替换子串(2,3)
    cout << s2 << endl;  //输出 HaOOOOO Potter
    int n = s2.find("OOOOO");  //查找子串 "00000" 的位置,n=2
    s2.replace(n, 5, "XXX");  //将子串(n,5)替换为"XXX"
    cout << s2 < < endl;  //输出 HaXXX Potter

8. 删除子串

erase 成员函数可以删除 string 对象中的子串,返回值为对象自身的引用。例如:

    string s1("Real Steel");
    s1.erase(1, 3);  //删除子串(1, 3),此后 s1 = "R Steel"
    s1.erase(5);  //删除下标5及其后面的所有字符,此后 s1 = "R Ste"

9.插入字符串

nsert 成员函数可以在 string 对象中插入另一个字符串,返回值为对象自身的引用。例如:

    string s1("Limitless"), s2("00");
    s1.insert(2, "123");  //在下标 2 处插入字符串"123",s1 = "Li123mitless"
    s1.insert(3, s2);  //在下标 2 处插入 s2 , s1 = "Li10023mitless"
    s1.insert(3, 5, 'X');  //在下标 3 处插入 5 个 'X',s1 = "Li1XXXXX0023mitless"

你可能感兴趣的:(C++ String操作)