首页 > 编程 > C++ > 正文

C++基础知识复习--字符串

2019-11-06 06:26:11
字体:
来源:转载
供稿:网友

String的使用:

#include<iostream>

#include<string>

using namespace std;

int main(){	string str;	str = "dadada";	cout<<"求字符串长度:"<<str.size()<<endl;
	for(int i = 0; i<str.size(); ++i)   //遍历字符串
	{
		cout<<str[i]<<<'  '<endl;
	}
	str.append(2, ' ', 'd');   //在字符串末尾加入2个字符
	str.append(str1);   //链接2个字符串,在str后面加入字符串
	str = str1 + str;   //链接2个字符串,在str后面加入字符串
		if(str.find(str1)!=-1)   //判断字符串是否包含子串
		cout<<"发现子串!str后面跟有字符串"<<endl;
		str.swap(str1);      //交换字符串
	return 0; }

char的使用:

计算字符串长度str[length];


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选