cstring left(intncount)const; //從左邊1開始獲取前 ncount個字元
cstring mid(intnfirst)const; //從左邊第 ncount+1個字元開始,獲取後面所有的字元
cstring mid(intnfirst,intncount)const; //從左邊第 nfirst+1 個字元開始,獲取後面ncount個字元
cstring right(intncount)const; //從右邊1開始獲取從右向左前 ncount個字元
voidmakeupper(); //這個函式可以將cstring字元轉化為乙個大寫的字串。
注:
在函式後面加 const 的意思是:
如果乙個類宣告了乙個常量物件,這個物件只能使用後邊帶 const 這個的方法.
例:
cstring a,b;
a = "123456789";
b =a.left(4); //值為:1234
b =a.mid(3); //值為:456789
b = a.mid(2, 4); //值為:3456
b = a.right(4); //值為:6789
the following example demonstrates the useof cstring::makeupper.
//example for cstring::makeupper cstrings( "abc" ); s.makeupper(); assert(s == "abc" );
在乙個較大的字串中查詢字元或子字串
int find( tchar ch ) const;
int find( lpctstr lpszsub ) const;
int find( tchar ch, int nstart ) const;intfind( lpctstr pstr, int nstart ) const;
返回值
返回此cstring物件中與需要的子字串或字元匹配的第乙個字元的從零開始的索引;如果沒有找到子字串或字元則返回-1。
引數
ch要搜尋的單個字元。 lpszsub要搜尋的子字串。 nstart字串中開始搜尋的字元的索引,如果是0,則是從頭開始搜尋。如果nstart不是0,則位於nstart之前的字元不包括在搜尋之內。 pstr指向要搜尋的字串的指標
/ cstring::find( tchar ch )
cstrings( "abcdef" ); intn = s.find( 'c' ); // 結果 n = 2 intf = s.find( "de" ) ; // 結果 f = 3
C string的常用方法
1 向string的後面加c string string s hello const char c out here s hello out here 2 向string的後面加c string的一部分 string s hello const char c out here s hello out...
C string常用函式
string擷取 替換 查詢子串函式 1.擷取子串 s.substr pos,n 擷取s中從pos開始 包括0 的n個字元的子串,並返回 s.substr pos 擷取s中從從pos開始 包括0 到末尾的所有字元的子串,並返回 2.替換子串 s.replace pos,n,s1 用s1替換s中從po...
c string常用函式
erase i,l i的位置開始刪除長度為l的子串 erase 3 3後面全刪完 substr 3,2 從下標3的位置取長度為2的子串 substr 3 從下標3的位置開始的子串 reverse s.begin s.end 翻轉s串 string iterator i,j 迭代器 類似指標 s.er...