字串操作(連線 查詢 截斷 反轉 大小寫轉換)

2021-08-21 06:15:36 字數 2075 閱讀 3722

1:字串連線

string strsample1("hello");

string strsample2("string!");

string strsample3("strsample3");

strsample1+= strsample2;

2:字串查詢

string strsample("good daystring! today is beautiful!");

size_t noffset = strsample.find("day",2);//從下標2開始查詢

if(noffset != npos)

else

找出所有的day

size_t nsubstringoffset = strsample.find("day",0);//從頭開始查詢

while(nsubstringoffset != npos)

3:字串截斷

string strsample("good daystring! today is beautiful!");

strsample.erase(5,18);//good is beautiful!

4:字串反轉

string strsample("good daystring! today is beautiful!");

reverse(strsample.begin(),strsample.end());

5:字串大小寫轉換

string strsample("good daystring! today is beautiful!");

transform(strsample.begin(),strsample.end(),strsample.begin(),toupper);string strsample1("hello");

string strsample2("string!");

string strsample3("strsample3");

strsample1+= strsample2;

2:字串查詢

string strsample("good daystring! today is beautiful!");

size_t noffset = strsample.find("day",2);//從下標2開始查詢

if(noffset != npos)

else

找出所有的day

size_t nsubstringoffset = strsample.find("day",0);//從頭開始查詢

while(nsubstringoffset != npos)

3:字串截斷

string strsample("good daystring! today is beautiful!");

strsample.erase(5,18);//good is beautiful!

4:字串反轉

string strsample("good daystring! today is beautiful!");

reverse(strsample.begin(),strsample.end());

5:字串大小寫轉換

string strsample("good daystring! today is beautiful!");

transform(strsample.begin(),strsample.end(),strsample.begin(),toupper);

6:buf中查詢字元e

int main()

else

}

7:buf中查詢字串ell

int main()

else

}

8:字串分割

int main()

}

9:字串替換

void stringreplace(string &strbase, string strsrc, string strdes)

}

CSS截斷字串

方法一 任意長度的字串 說明 優點是內容可以為任何html元素,包括超連結和等,在ie6中還會在結尾自動顯示省略號。缺點是必須指定寬度數值,並且寬度不能是百分數,否則在ie中會被認為是字元總長的百分比。方法二 說明 優點是寬度可以設為百分數。但缺點是內容只能為純文字,不能有超連結等內容。css 截斷...

用CSS截斷字串

方法一 任意長度的字串 說明 優點是內容可以為任何html元素,包括超連結和等,在ie6中還會在結尾自動顯示省略號。缺點是必須指定寬度數值,並且寬度不能是百分數,否則在ie中會被認為是字元總長的百分比。方法二 說明 優點是寬度可以設為百分數。但缺點是內容只能為純文字,不能有超連結等內容。css 截斷...

用CSS截斷字串

方法一 任意長度的字串 說明 優點是內容可以為任何html元素,包括超連結和等,在ie6中還會在結尾自動顯示省略號。缺點是必須指定寬度數值,並且寬度不能是百分數,否則在ie中會被認為是字元總長的百分比。方法二 css 截斷字串2008 01 08 09 58css是實現文字自動截斷,如下 div.t...