1. 程式人生 > 實用技巧 >c++ string 常用操作

c++ string 常用操作

string常用相關操作

求字串的長度

string s = "asdf"
s.size()
s.length()

int和string互相轉換

#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main()
{
    int n = 123;
    string s = to_string(n);
    string ss = "1234";
    int nn = stoi(ss);
    cout << s << endl;
    cout 
<< nn << endl; system("pause"); return 0; }

string物件中字串的連線

除了可以使用++=運算子對 string 物件執行字串的連線操作外,string 類還有 append 成員函式,可以用來向字串後面新增內容。append 成員函式返回物件自身的引用。例如:

string s1("123"), s2("abc");
s1.append(s2);  // s1 = "123abc"
s1.append(s2, 1, 2);  // s1 = "123abcbc"
s1.append(3, 'K');  // s1 = "123abcbcKKK"
s1.append("ABCDE", 2, 3); // s1 = "123abcbcKKKCDE",新增 "ABCDE" 的子串(2, 3)

string物件的比較

string s1("hello"), s2("hello, world");
int n = s1.compare(s2);
//n = -1
n = s1.compare(1, 2, s2, 0, 3);  //比較s1的子串 (1,2) 和s2的子串 (0,3)
                                 //n = -1
n = s1.compare(0, 2, s2);  // 比較s1的子串 (0,2) 和 s2
                           
//n = -1 n = s1.compare("Hello"); //n = 1 n = s1.compare(1, 2, "Hello"); //比較 s1 的子串(1,2)和"Hello” //n = 1 n = s1.compare(1, 2, "Hello", 1, 2); //比較 s1 的子串(1,2)和 "Hello" 的子串(1,2) //n = 0

求 string 物件的子串

substr 成員函式可以用於求子串 (n, m),原型如下:

string substr(int n = 0, int m = string::npos) const;

呼叫時,如果省略 m 或 m 超過了字串的長度,則求出來的子串就是從下標 n 開始一直到字串結束的部分。例如:

string s1 = "this is ok";
string s2 = s1.substr(2, 4);  // s2 = "is i"
s2 = s1.substr(2);  // s2 = "is is ok"

交換兩個string物件的內容

swap 成員函式可以交換兩個 string 物件的內容。例如:

string s1("West”), s2("East");
s1.swap(s2);  // s1 = "East",s2 = "West"

查詢子串和字元

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:從後往前查詢何處出現另一個字串中沒有包含的字元。
#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s1("Source Code");
    int n;
    if ((n = s1.find('u')) != string::npos) //查詢 u 出現的位置
        cout << "1) " << n << "," << s1.substr(n) << endl;
    //輸出 l)2,urce Code
    if ((n = s1.find("Source", 3)) == string::npos)
        //從下標3開始查詢"Source",找不到
        cout << "2) " << "Not Found" << endl;  //輸出 2) Not Found
    if ((n = s1.find("Co")) != string::npos)
        //查詢子串"Co"。能找到,返回"Co"的位置
        cout << "3) " << n << ", " << s1.substr(n) << endl;
    //輸出 3) 7, Code
    if ((n = s1.find_first_of("ceo")) != string::npos)
        //查詢第一次出現或 'c'、'e'或'o'的位置
        cout << "4) " << n << ", " << s1.substr(n) << endl;
    //輸出 4) l, ource Code
    if ((n = s1.find_last_of('e')) != string::npos)
        //查詢最後一個 'e' 的位置
        cout << "5) " << n << ", " << s1.substr(n) << endl;  //輸出 5) 10, e
    if ((n = s1.find_first_not_of("eou", 1)) != string::npos)
        //從下標1開始查詢第一次出現非 'e'、'o' 或 'u' 字元的位置
        cout << "6) " << n << ", " << s1.substr(n) << endl;
    //輸出 6) 3, rce Code
    system("pause");
    return 0;
}

替換子串

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

刪除子串

erase 成員函式可以刪除 string 物件中的子串,返回值為物件自身的引用。例如:

string s1("Real Steel");
s1.erase(1, 3);  //刪除子串(1, 3),此後 s1 = "R Steel"
s1.erase(5);  //刪除下標5及其後面的所有字元,此後 s1 = "R Ste"

插入字串

insert 成員函式可以在 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"

將 string 物件作為流處理

使用流物件 istringstream 和 ostringstream,可以將 string 物件當作一個流進行輸入輸出。使用這兩個類需要包含標頭檔案 sstream。
示例程式如下:

 1 #include <iostream>
 2 #include <sstream>
 3 #include <string>
 4 using namespace std;
 5 int main()
 6 {
 7     string src("Avatar 123 5.2 Titanic K");
 8     istringstream istrStream(src); //建立src到istrStream的聯絡
 9     string s1, s2;
10     int n;  double d;  char c;
11     istrStream >> s1 >> n >> d >> s2 >> c; //把src的內容當做輸入流進行讀取
12     ostringstream ostrStream;
13     ostrStream << s1 << endl << s2 << endl << n << endl << d << endl << c << endl;
14     cout << ostrStream.str();
15     system("pause");
16     return 0;
17 }
18 
19 //Avatar
20 //Titanic
21 //123
22 //5.2
23 //K

第 11 行,從輸入流 istrStream 進行讀取,過程和從 cin 讀取一樣,只不過輸入的來源由鍵盤變成了 string 物件 src。因此,"Avatar" 被讀取到 s1,123 被讀取到 n,5.2 被讀取到 d,"Titanic" 被讀取到s2,'K' 被讀取到 c。
第 12 行,將變數的值輸出到流 ostrStream。輸出結果不會出現在螢幕上,而是被儲存在 ostrStream 物件管理的某處。用 ostringstream 類的 str 成員函式能將輸出到 ostringstream 物件中的內容提取出來。