C++ 提高教程 STL -string字符串拼接

Posted 行码阁119

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 STL -string字符串拼接相关的知识,希望对你有一定的参考价值。

 

# include<iostream>
# include<string>
using namespace std;

//string字符串拼接
void test01()
{
	string str1 = "我";
	str1 += "爱玩游戏";
	cout << str1<< endl;
	str1 += ":";
	cout << "str1 =" << str1 << endl;
	string str2 = "LOL DNF";
	str1 += str2;
	cout << "str1 =" << str1 << endl;


	string str3 = "I";
	str3.append(" Love");
	str3.append(" Game abcde",5);
	cout << "str3 =" << str3 << endl;
	str3.append(str2);
	cout << "str3 =" << str3 << endl;
	str3.append(str2,4,3);
	cout << "str3 =" << str3 << endl;


}

int main()
{
	test01();
	system("pause");
	return 0;
}

以上是关于C++ 提高教程 STL -string字符串拼接的主要内容,如果未能解决你的问题,请参考以下文章

C++ 提高教程 STL stack容器

C++ 提高教程 STL - Vector容器嵌套容器

C++ 提高教程 STL -容器算法迭代器初识

C++黑马程序员 | c++教程从0到1入门编程笔记 | c++提高编程

C++提高编程STL 初识

c++提高编程 2 .STL初识