string容器08之string字符串的字串获取

2021-03-02 16:58:04 浏览数 (1)

string字符串的字串获取

代码语言:javascript复制
#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;
}

0 人点赞