#include<iostream>
using namespace std;
//string字符串的字串获取
void test()
{
string s = "dhy@ly.com";
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;
}