string容器08之string字串的字串獲取
阿新 • • 發佈:2021-02-09
技術標籤:stl學習之string字串c++stl
string字串的字串獲取
#include<iostream>
using namespace std;
//string字串的字串獲取
void test()
{
string s = "[email protected]";
cout << s.substr(0, 3) << endl;
//實用性:例如獲取郵箱的使用者名稱
int pos=s.find('@');
cout << pos << endl; //注意下標是從0開始獲取的
cout << "郵箱的使用者名稱: " << s.substr(0, pos) << endl;
}
int main()
{
test();
system("pause");
return 0;
}