string字串用法

2020-08-12 21:51:09

參考文獻一

參考文獻二

前言:

string是C++標準庫的一個重要的部分,主要用於字串處理。同時,C++的演算法庫對string類也有着很好的支援,而且string類還和c語言的字串之間有着良好的介面。

string基本用法

  • 宣告:

string s; // 生成一個空字串s
string s(str) ; // 拷貝建構函式生成str的複製品
string s(str, stridx); // 將字串str內"始於位置stridx"的部分當作字串的初值
string s(str, stridx, strlen) ; // 將字串str內"始於stridx且長度頂多strlen"的部分作爲字串的初值
string s(cstr) ; // 將C字串(以NULL結束)作爲s的初值
string s(chars, chars_len) ; // 將C字串前chars_len個字元作爲字串s的初值。
string s(num, ‘c’) ; // 生成一個字串,包含num個c字元
string s(「value」); string s=「value」; // 將s初始化爲一個字串字面值副本
string s(begin, end); // 以區間begin/end(不包含end)內的字元作爲字串s的初值
s.~string(); //銷燬所有字元,釋放記憶體

  • 進行string物件和字串字面值混合連線操作時,+操作符的左右運算元必須至少有一個是string型別的:

string s1(「hello」);
string s3=s1+」world」; //合法操作
string s4=」hello」+」world」; //非法操作:兩個字串字面值相加

  • 基本函數:
) =, s.assign() // 賦以新值
) swap() // 交換兩個字串的內容
) +=, s.append(), s.push_back() // 在尾部新增字元
) s.back();   s.front()
)s.pop_back()   彈出尾元素
) s.insert() // 插入字元
) s.erase() // 刪除字元
) s.clear() // 刪除全部字元
) s.replace() // 替換字元
) + // 串聯字串
) ==,!=,<,<=,>,>=,compare() // 比較字串
) size(),length() // 返回字元數量
) max_size() // 返回字元的可能最大個數
) s.empty() // 判斷字串是否爲空
) s.capacity() // 返回重新分配之前的字元容量
) reserve() // 保留一定量記憶體以容納一定數量的字元
) [ ], at() // 存取單一字元
) >>,getline() // 從stream讀取某值
) << // 將謀值寫入stream
) copy() // 將某值賦值爲一個C_string
) c_str() // 返回一個指向正規C字串(C_string)的指針 內容與本string串相同 有’\0’
) data() // 將內容以字元陣列形式返回 無’\0’
) s.substr() // 返回某個子字串   
) begin() end() // 提供類似STL的迭代器支援
) rbegin() rend() // 逆向迭代器
) get_allocator() // 返回設定器
着重講講幾個用法:
NO.1 string轉換爲char*

(注意:使用 c_str() 方法轉換 string 型別到 char* 型別時,需要爲char*新增 const 關鍵字)

string s = "hello";
const char *t = s.c_str();
cout<<t<<endl;
NO.2 == char*、char[]轉換爲string==

(實際上就是將 char*、char[] 定義的字串的首地址賦值給 string 物件)

#include <string>
#include <iostream>
 
using namespace std;
 
int main()
{
    const char* pszName = "liitdar";
    char pszCamp[] = "alliance";
 
    string strName;
    string strCamp;
 
    strName = pszName;
    strCamp = pszCamp;
 
    cout << "strName is: " << strName << endl;
    cout << "strCamp is: " << strCamp << endl;
 
    return 0;
}
NO.3 string類的find方法

find函數返回值:

The position of the first character of the first match. If no matches were found, the function returns string::npos.(找不到的就返回string::npos

size_t is an unsigned integral type (the same as member type string::size_type).

size_t find (const string& str, size_t pos = 0) const;
size_t find (const char* s, size_t pos = 0) const;
size_t find (const char* s, size_t pos, size_t n) const;
size_t find (char c, size_t pos = 0) const;
No.4 int型別轉爲string類的方法
方法1:(不常用)
	int nNum1 = 123;
    stringstream ss;
 
    ss << nNum1;
    string strTest1 = ss.str();
    cout << "strTest1 is: " << strTest1 << endl;

方法二:(常用)
	int nNum2 = 456;
    string strTest4;
    strTest4 = to_string(nNum2);    //這是 C++11 標準
    cout << "strTest4 is: " << strTest4 << endl;

NO.5

string substr(int pos = 0,int n = npos) const; //返回pos開始的n個字元組成的字串

    string h="hello world!";
    string s = h.substr(0,5);
    cout<<s<<endl;

返回: hello



以下內容來自別人的部落格,請點選!
在平常工作中經常用到了string類,本人記憶了不好用到了的時候經常要去查詢。在網上摘抄一下總結一下,爲以後的查詢方便:

string類別建構函式:
string(const char *s); //用c字串s初始化string(int n,char c); //用n個字元c初始化

string類的字元操作:
const char &operator[](int n)const;
const char &at(int n)const;
char &operator[](int n);
char &at(int n);
operator[]和at()均返回當前字串中第n個字元的位置,但at函數提供範圍檢查,當越界時會拋出out_of_range異常,下標運算子[]不提供檢查存取。
const char *data()const;//返回一個非null終止的c字元陣列
const char *c_str()const;//返回一個以null終止的c字串
int copy(char *s, int n, int pos = 0) const;//把當前串中以pos開始的n個字元拷貝到以s爲起始位置的字元陣列中,返回實際拷貝的數目

注:對於string中物件字元的處理,有很多已有的函數在CCtype標頭檔案中,可以很方便的應用

string的特性描述:
int capacity()const; //返回當前容量(即string中不必增加記憶體即可存放的元素個數)
int max_size()const; //返回string物件中可存放的最大字串的長度
int size()const; //返回當前字串的大小
int length()const; //返回當前字串的長度
bool empty()const; //當前字串是否爲空
void resize(int len,char c);//把字串當前大小置爲len,並用字元c填充不足的部分

string類的輸入輸出操作:string類過載運算子operator>>用於輸入,同樣過載運算子operator<<用於輸出操作。
函數getline(istream &in,string &s);用於從輸入流in中讀取字串到s中,以換行符’\n’分開。

string的賦值:
string &operator=(const string &s);//把字串s賦給當前字串
string &assign(const char *s);//用c型別字串s賦值
string &assign(const char *s,int n);//用c字串s開始的n個字元賦值
string &assign(const string &s);//把字串s賦給當前字串
string &assign(int n,char c);//用n個字元c賦值給當前字串
string &assign(const string &s,int start,int n);//把字串s中從start開始的n個字元賦給當前字串
string &assign(const_iterator first,const_itertor last);//把first和last迭代器之間的部分賦給字串

string的連線:
string &operator+=(const string &s);//把字串s連線到當前字串的結尾
string &append(const char *s); //把c型別字串s連線到當前字串結尾
string &append(const char *s,int n);//把c型別字串s的前n個字元連線到當前字串結尾
string &append(const string &s); //同operator+=()
string &append(const string &s,int pos,int n);//把字串s中從pos開始的n個字元連線到當前字串的結尾
string &append(int n,char c); //在當前字串結尾新增n個字元c
string &append(const_iterator first,const_iterator last);//把迭代器first和last之間的部分連線到當前字串的結尾

string的比較:
bool operator==(const string &s1,const string &s2)const;//比較兩個字串是否相等
運算子">","<",">=","<=","!="均被過載用於字串的比較;
int compare(const string &s) const;//比較當前字串和s的大小
int compare(int pos, int n,const string &s)const;//比較當前字串從pos開始的n個字元組成的字串與s的大小
int compare(int pos, int n,const string &s,int pos2,int n2)const;//比較當前字串從pos開始的n個字元組成的字串與s中pos2開始的n2個字元組成的字串的大小
int compare(const char *s) const;
int compare(int pos, int n,const char *s) const;
int compare(int pos, int n,const char *s, int pos2) const;
compare函數在>時返回1,<時返回-1,==時返回0
string的子串:
string substr(int pos = 0,int n = npos) const;//返回pos開始的n個字元組成的字串

string的交換:
void swap(string &s2); //交換當前字串與s2的值

string類的查詢函數:
int find(char c, int pos = 0) const;//從pos開始查詢字元c在當前字串的位置
int find(const char *s, int pos = 0) const;//從pos開始查詢字串s在當前串中的位置
int find(const char *s, int pos, int n) const;//從pos開始查詢字串s中前n個字元在當前串中的位置
int find(const string &s, int pos = 0) const;//從pos開始查詢字串s在當前串中的位置
//查詢成功時返回所在位置,失敗返回string::npos的值
int rfind(char c, int pos = npos) const;//從pos開始從後向前查詢字元c在當前串中的位置
int rfind(const char *s, int pos = npos) const;
int rfind(const char *s, int pos, int n = npos) const;
int rfind(const string &s,int pos = npos) const;
//從pos開始從後向前查詢字串s中前n個字元組成的字串在當前串中的位置,成功返回所在位置,失敗時返回string::npos的值
int find_first_of(char c, int pos = 0) const;//從pos開始查詢字元c第一次出現的位置
int find_first_of(const char *s, int pos = 0) const;
int find_first_of(const char *s, int pos, int n) const;
int find_first_of(const string &s,int pos = 0) const;
//從pos開始查詢當前串中第一個在s的前n個字元組成的數組裏的字元的位置。查詢失敗返回string::npos
int find_first_not_of(char c, int pos = 0) const;
int find_first_not_of(const char *s, int pos = 0) const;
int find_first_not_of(const char *s, int pos,int n) const;
int find_first_not_of(const string &s,int pos = 0) const;
//從當前串中查詢第一個不在串s中的字元出現的位置,失敗返回string::npos
int find_last_of(char c, int pos = npos) const;
int find_last_of(const char *s, int pos = npos) const;
int find_last_of(const char *s, int pos, int n = npos) const;
int find_last_of(const string &s,int pos = npos) const;
int find_last_not_of(char c, int pos = npos) const;
int find_last_not_of(const char *s, int pos = npos) const;
int find_last_not_of(const char *s, int pos, int n) const;
int find_last_not_of(const string &s,int pos = npos) const;
//find_last_of和find_last_not_of與find_first_of和find_first_not_of相似,只不過是從後向前查詢

string類的替換函數:
string &replace(int p0, int n0,const char *s);//刪除從p0開始的n0個字元,然後在p0處插入串s
string &replace(int p0, int n0,const char *s, int n);//刪除p0開始的n0個字元,然後在p0處插入字串s的前n個字元
string &replace(int p0, int n0,const string &s);//刪除從p0開始的n0個字元,然後在p0處插入串s
string &replace(int p0, int n0,const string &s, int pos, int n);//刪除p0開始的n0個字元,然後在p0處插入串s中從pos開始的n個字元
string &replace(int p0, int n0,int n, char c);//刪除p0開始的n0個字元,然後在p0處插入n個字元c
string &replace(iterator first0, iterator last0,const char *s);//把[first0,last0)之間的部分替換爲字串s
string &replace(iterator first0, iterator last0,const char *s, int n);//把[first0,last0)之間的部分替換爲s的前n個字元
string &replace(iterator first0, iterator last0,const string &s);//把[first0,last0)之間的部分替換爲串s
string &replace(iterator first0, iterator last0,int n, char c);//把[first0,last0)之間的部分替換爲n個字元c
string &replace(iterator first0, iterator last0,const_iterator first, const_iterator last);//把[first0,last0)之間的部分替換成[first,last)之間的字串

string類的插入函數: string &insert(int p0, const char *s);
string &insert(int p0, const char *s, int n);
string &insert(int p0,const string &s);
string &insert(int p0,const string &s, int pos, int n);
//前4個函數在p0位置插入字串s中pos開始的前n個字元
string &insert(int p0, int n, char c);//此函數在p0處插入n個字元c
iterator insert(iterator it, char c);//在it處插入字元c,返回插入後迭代器的位置
void insert(iterator it, const_iterator first, const_iterator last);//在it處插入[first,last)之間的字元
void insert(iterator it, int n, char c);//在it處插入n個字元c

string類的刪除函數 iterator erase(iterator first, iterator last);//刪除[first,last)之間的所有字元,返回刪除後迭代器的位置
iterator erase(iterator it);//刪除it指向的字元,返回刪除後迭代器的位置
string &erase(int pos = 0, int n = npos);//刪除pos開始的n個字元,返回修改後的字串

string類的迭代器處理:
string類提供了向前和向後遍歷的迭代器iterator,迭代器提供了存取各個字元的語法,類似於指針操作,迭代器不檢查範圍。
用string::iterator或string::const_iterator宣告迭代器變數,const_iterator不允許改變迭代的內容。常用迭代器函數有:
const_iterator begin()const;
iterator begin(); //返回string的起始位置
const_iterator end()const;
iterator end(); //返回string的最後一個字元後面的位置
const_iterator rbegin()const;
iterator rbegin(); //返回string的最後一個字元的位置
const_iterator rend()const;
iterator rend(); //返回string第一個字元位置的前面
rbegin和rend用於從後向前的迭代存取,通過設定迭代器string::reverse_iterator,string::const_reverse_iterator實現

字串流處理:
通過定義ostringstream和istringstream變數實現,標頭檔案中
例如:
string input(「hello,this is a test」);
istringstream is(input);
string s1,s2,s3,s4;
is>>s1>>s2>>s3>>s4;//s1=「hello,this」,s2=「is」,s3=「a」,s4=「test」
ostringstream os;
os<<s1<<s2<<s3<<s4;
cout<<os.str();

標準C++庫字串類std::string的用法

#include
std::string s1;
std::string s3(s2);
std::string s2(「this is a string」);
begin 得到指向字串開頭的Iterator
end 得到指向字串結尾的Iterator
rbegin 得到指向反向字串開頭的Iterator
rend 得到指向反向字串結尾的Iterator
size 得到字串的大小
length() 和size函數功能相同
max_size 字串可能的最大大小
capacity 在不重新分配記憶體的情況下,字串可能的大小
empty 判斷是否爲空
operator[] 取第幾個元素,相當於陣列
c_str 取得C風格的const char* 字串
data 取得字串內容地址
operator= 賦值操作符
reserve 預留空間
swap 交換函數
insert 插入字元
append 追加字元
push_back 追加字元
erase 刪除字串
clear 清空字元容器中所有內容
resize 重新分配空間
assign 和賦值操作符一樣
replace 替代
copy 字串到空間
find 查詢,返回基於0的索引號
rfind 反向查詢
find_first_of 查詢包含子串中的任何字元,返回第一個位置
find_first_not_of 查詢不包含子串中的任何字元,返回第一個位置
find_last_of 查詢包含子串中的任何字元,返回最後一個位置
find_last_not_of 查詢不包含子串中的任何字元,返回最後一個位置
substr(n1,len) 得到字串從n1開始的長度爲len的子串
比較字串(支援所有的關係運算符)
compare 比較字串
operator+ 字串鏈接
operator+= += 操作符
operator== 判斷是否相等
operator!= 判斷是否不等於
operator< 判斷是否小於
operator>> 從輸入流中讀入字串
operator<< 字串寫入輸出流
getline 從輸入流中讀入一行