原創博客:轉載請標明出處:http://www.cnblogs.com/zxouxuewei/ios
一.字符串變量的定義算法
1》.對於C與C++來講是沒有字符串型的數據類型的,在C++中是經過包含std命名空間中的標準庫而後用string來定義或者使用數組或用指向數組的指針來實現字符串變量的定義及使用的。數據庫
#include<iostream> using namespace std; int main() { string str1 = "hello world!"; cout << "x is "<< str1 <<endl; return 0; }
2》.使用字符串數組定義字符串變量。編程
#include<iostream> using namespace std; int main() { string str[] = {"zxw","qwe"}; cout << "x is " << str[0] <<endl;
cout << "x is " << str[1] <<endl; return 0; }
二.字符串變量的賦值數組
在定義字符串變量後能夠用賦值語句將其變量進行賦值。 app
#include<iostream> using namespace std; int main() { string str1 = "hello world!"
string str2 = "thank you!"
str1 = str2; //不要求長度相同
return 0; }
3》.字符串變量的運算函數
1.聲明一個C++字符串
聲明一個字符串變量很簡單:
string Str;
這樣咱們就聲明瞭一個字符串變量,但既然是一個類,就有構造函數和析構函數。上面的聲明沒有傳入參數,因此就直接使用了string的默認的構造函數,這個函數所做的就是把Str初始化爲一個空字符串。String類的構造函數和析構函數以下:spa
a) string s; //生成一個空字符串s b) string s(str) //拷貝構造函數 生成str的複製品 c) string s(str,stridx) //將字符串str內「始於位置stridx」的部分看成字符串的初值 d) string s(str,stridx,strlen) //將字符串str內「始於stridx且長度頂多strlen」的部分做爲字符串的初值 e) string s(cstr) //將C字符串做爲s的初值 f) string s(chars,chars_len) //將C字符串前chars_len個字符做爲字符串s的初值。 g) string s(num,c) //生成一個字符串,包含num個c字符 h) string s(beg,end) //以區間beg;end(不包含end)內的字符做爲字符串s的初值 i) s.~string() //銷燬全部字符,釋放內存
2.字符串操做函數
這裏是C++字符串的重點,我先把各類操做函數羅列出來,不喜歡把全部函數都看完的人能夠在這裏找本身喜歡的函數,再到後面看他的詳細解釋。指針
a) =,assign() //賦以新值 b) swap() //交換兩個字符串的內容 c) +=,append(),push_back() //在尾部添加字符 d) insert() //插入字符 e) erase() //刪除字符 f) clear() //刪除所有字符 g) replace() //替換字符 h) + //串聯字符串 i) ==,!=,<,<=,>,>=,compare() //比較字符串 j) size(),length() //返回字符數量 k) max_size() //返回字符的可能最大個數 l) empty() //判斷字符串是否爲空 m) capacity() //返回從新分配以前的字符容量 n) reserve() //保留必定量內存以容納必定數量的字符 o) [ ], at() //存取單一字符 p) >>,getline() //從stream讀取某值 q) << //將謀值寫入stream r) copy() //將某值賦值爲一個C_string s) c_str() //將內容以C_string返回 t) data() //將內容以字符數組形式返回 u) substr() //返回某個子字符串 v)查找函數 w)begin() end() //提供相似STL的迭代器支持 x) rbegin() rend() //逆向迭代器 y) get_allocator() //返回配置器
下面詳細介紹:code
2.1 C++字符串和C字符串的轉換
C ++提供的由C++字符串獲得對應的C_string的方法是使用data()、c_str()和copy(),其中,data()以字符數組的形式返回 字符串內容,但並不添加'/0'。c_str()返回一個以‘/0'結尾的字符數組,而copy()則把字符串的內容複製或寫入既有的c_string或 字符數組內。C++字符串並不以'/0'結尾。個人建議是在程序中能使用C++字符串就使用,除非萬不得已不選用c_string。因爲只是簡單介紹,詳 細介紹掠過,誰想進一步瞭解使用中的注意事項能夠給我留言(到個人收件箱)。我詳細解釋。
2.2 大小和容量函數
一個C++字符串存在三種大小:a)現有的字符數,函數是size()和 length(),他們等效。Empty()用來檢查字符串是否爲空。b)max_size() 這個大小是指當前C++字符串最多能包含的字符數,極可能和機器自己的限制或者字符串所在位置連續內存的大小有關係。咱們通常狀況下不用關心他,應該大小 足夠咱們用的。可是不夠用的話,會拋出length_error異常c)capacity()從新分配內存以前 string所能包含的最大字符數。這裏另外一個須要指出的是reserve()函數,這個函數爲string從新分配內存。從新分配的大小由其參數決定, 默認參數爲0,這時候會對string進行非強制性縮減。
還有必要再重複一下C++字符串和C字符串轉換的問 題,許多人會遇到這樣的問題,本身作的程序要調用別人的函數、類什麼的(好比數據庫鏈接函數Connect(char*,char*)),但別人的函數參 數用的是char*形式的,而咱們知道,c_str()、data()返回的字符數組由該字符串擁有,因此是一種const char*,要想做爲上面說起的函數的參數,還必須拷貝到一個char*,而咱們的原則是能不使用C字符串就不使用。那麼,這時候咱們的處理方式是:若是 此函數對參數(也就是char*)的內容不修改的話,咱們能夠這樣Connect((char*)UserID.c_str(), (char*)PassWD.c_str()),可是這時候是存在危險的,由於這樣轉換後的字符串實際上是能夠修改的(有興趣地能夠本身試一試),因此我強 調除非函數調用的時候不對參數進行修改,不然必須拷貝到一個char*上去。固然,更穩妥的辦法是不管什麼狀況都拷貝到一個char*上去。同時咱們也祈 禱如今仍然使用C字符串進行編程的高手們寫的函數都比較規範,那樣 咱們就沒必要進行強制轉換了。
2.3元素存取
咱們可使用下標操做符[]和函數at()對元素包含的字符進行訪問。可是應該注意的是 操做符[]並不檢查索引是否有效(有效索引0~str.length()),若是索引失效,會引發未定義的行爲。而at()會檢查,若是使用 at()的時候索引無效,會拋出out_of_range異常。
有一個例外不得不說,const string a;的操做符[]對索引值是a.length()仍然有效,其返回值是'/0'。其餘的各類狀況,a.length()索引都是無效的。舉例以下:
const string Cstr(「const string」); string Str(「string」); Str[3]; //ok Str.at(3); //ok Str[100]; //未定義的行爲 Str.at(100); //throw out_of_range Str[Str.length()] //未定義行爲 Cstr[Cstr.length()] //返回 ‘/0' Str.at(Str.length());//throw out_of_range Cstr.at(Cstr.length()) ////throw out_of_range 我不同意相似於下面的引用或指針賦值: char& r=s[2]; char* p= &s[3];
由於一旦發生從新分配,r,p當即失效。避免的方法就是不使用。
2.4比較函數
C ++字符串支持常見的比較操做符(>,>=,<,<=,==,!=),甚至支持string與C-string的比較(如 str<」hello」)。在使用>,>=,<,<=這些操做符的時候是根據「當前字符特性」將字符按字典順序進行逐一得 比較。字典排序靠前的字符小,比較的順序是從前向後比較,遇到不相等的字符就按這個位置上的兩個字符的比較結果肯定兩個字符串的大小。同時,string (「aaaa」) <string(aaaaa)。
另外一個功能強大的比較函數是成員函數compare()。他支持多參數處理,支持用索引值和長度定位子串來進行比較。他返回一個整數來表示比較結果,返回值意義以下:0-相等 〉0-大於 <0-小於。舉例以下:
string s(「abcd」); s.compare(「abcd」); //返回0 s.compare(「dcba」); //返回一個小於0的值 s.compare(「ab」); //返回大於0的值 s.compare(s); //相等 s.compare(0,2,s,2,2); //用」ab」和」cd」進行比較 小於零 s.compare(1,2,」bcx」,2); //用」bc」和」bc」比較。
怎麼樣?功可以全的吧!什麼?還不能知足你的胃口?好吧,那等着,後面有更個性化的比較算法。先給個提示,使用的是STL的比較算法。
2.5 更改內容
這在字符串的操做中佔了很大一部分。
首先講賦值,第一個賦值方法固然是使用操做符=,新值能夠是string(如:s=ns) 、c_string(如:s=」gaint」)甚至單一字符(如:s='j')。還可使用成員函數assign(),這個成員函數可使你更靈活的對字符串賦值。仍是舉例說明吧:
s.assign(str); //不說 s.assign(str,1,3);//若是str是」iamangel」 就是把」ama」賦給字符串 s.assign(str,2,string::npos);//把字符串str從索引值2開始到結尾賦給s s.assign(「gaint」); //不說 s.assign(「nico」,5);//把'n' ‘I' ‘c' ‘o' ‘/0'賦給字符串 s.assign(5,'x');//把五個x賦給字符串
把字符串清空的方法有三個:s=」」;s.clear();s.erase();
string提供了不少函數用於插入(insert)、刪除(erase)、替換(replace)、增長字符。
先說增長字符(這裏說的增長是在尾巴上),函數有 +=、append()、push_back()。
舉例以下:
s+=str;//加個字符串 s+=」my name is jiayp」;//加個C字符串 s+='a';//加個字符 s.append(str); s.append(str,1,3);//不解釋了 同前面的函數參數assign的解釋 s.append(str,2,string::npos)//不解釋了 s.append(「my name is jiayp」); s.append(「nico」,5); s.append(5,'x'); s.push_back(‘a');//這個函數只能增長單個字符對STL熟悉的理解起來很簡單
也許你須要在string中間的某個位置插入字符串,這時候你能夠用insert()函數,這個函數須要你指定一個安插位置的索引,被插入的字符串將放在這個索引的後面。
s.insert(0,」my name」); s.insert(1,str);
這 種形式的insert()函數不支持傳入單個字符,這時的單個字符必須寫成字符串形式爲了插 入單個字符,insert()函數提供了兩個對插入單個字符操做的重載函數:insert(size_type index,size_type num,chart c)和insert(iterator pos,size_type num,chart c)。其中size_type是無符號整數,iterator是char*,因此,你這麼調用insert函數是不行的:insert(0,1, 'j');這時候第一個參數將轉換成哪個呢?因此你必須這麼寫:insert((string::size_type)0,1,'j')!第二種形式指 出了使用迭代器安插字符的形式,在後面會說起。順便提一下,string有不少操做是使用STL的迭代器的,他也儘可能作得和STL靠近。
刪除函數erase()的形式也有好幾種(真煩!),替換函數replace()也有好幾個。
舉例吧:
string s=」il8n」; s.replace(1,2,」nternationalizatio」);//從索引1開始的2個替換成後面的C_string s.erase(13);//從索引13開始日後全刪除 s.erase(7,5);//從索引7開始日後刪5個
2.6提取子串和字符串鏈接
題取子串的函數是:substr(),形式以下:
s.substr();//返回s的所有內容 s.substr(11);//從索引11日後的子串 s.substr(5,6);//從索引5開始6個字符
把兩個字符串結合起來的函數是+。
2.7輸入輸出操做
1.>> 從輸入流讀取一個string。
2.<< 把一個string寫入輸出流。
另外一個函數就是getline(),他從輸入流讀取一行內容,直到遇到分行符或到了文件尾。
2.8搜索與查找
查找函數不少,功能也很強大,包括了:
find()
rfind()
find_first_of()
find_last_of()
find_first_not_of()
find_last_not_of()
這些函數返回符合搜索條件的字符區間內的第一個字符的索引,沒找到目標就返回npos。全部的函數的參數說明以下:
第一個參數是被搜尋的對象。第二個參數(無關緊要)指出string內的搜尋起點索引,第三個參數(無關緊要)指出搜尋的字符個數。比較簡單,很少說不理解的能夠向我提出,我再仔細的解答。固然,更增強大的STL搜尋在後面會有說起。
最 後再說說npos的含義,string::npos的類型是string::size_type,因此,一旦須要把一個索引與npos相比,這個索引值必 須是string::size)type類型的,更多的狀況下,咱們能夠直接把函數和npos進行比較(如:if(s.find(「jia」)== string::npos))。
string類的構造函數:
string(const char *s); //用c字符串s初始化 string(int n,char c); //用n個字符c初始化
此外,string類還支持默認構造函數和複製構造函數,如string s1;string s2="hello";都是正確的寫法。當構造的string太長而沒法表達時會拋出length_error異常
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的特性描述:
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變量實現,<sstream>頭文件中