C++ 提高教程 STL-string字串
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 STL-string字串相关的知识,希望对你有一定的参考价值。
# include<iostream>
# include<string>
using namespace std;
void test01()
{
string str1 = "Hello";
string subStr = str1.substr(1, 3);
cout << "subStr:" << subStr << endl;
}
void test02()
{
string email = "Zhangsan@sina.com";
int pose = email.find("@");
string subStr = email.substr(0, pose);
cout << "subStr:" << subStr << endl;
}
int main()
{
test02();
system("pause");
return 0;
}
以上是关于C++ 提高教程 STL-string字串的主要内容,如果未能解决你的问题,请参考以下文章