[C/C++ 基礎]-純C++ string 搜尋與取代功能測試
[C/C++ 基礎]-純C++ string 搜尋與取代功能測試
本篇要分享純C++ string 搜尋與取代功能,有興趣的(C/P)同好,歡迎來(C/P)一下哈哈 ^ ^。
程式碼 |
#include "stdafx.h"
// string::find
#include <iostream> #include <string> usingnamespace std;
int main () {
string str ("http://127.0.0.1:9999/888.mp4");
string str2 (".mp4");
size_t found;
string str3;
found=str.find(str2);
cout << found <<endl;
str3=str;
cout << str3 <<endl;
str3.replace(found,4,"");
cout << str3 <<endl;
system("pause");
return 0; }
|