C++ 字符串的基本操作

 1》字符串的创建和遍历

#include <iostream>
#include "string"
using namespace std;
//字符串初始化
void strInit()
{
	cout << "字符串初始化:"  <<endl;
	string s1 = "abcdefg";	//初始化方式1
	string s2("abcdefg");	//初始化方式2
	string s3 = s2;			//通过拷贝构造函数 初始化s3
	string s4(7,'s');		//初始化7个s的字符串
	cout << "s1 = "<< s1 << endl;
	cout << "s2 = "<< s2 << endl;
	cout << "s3 = "<< s3 << endl;
	cout << "s4 = "<< s4 << endl;
}
//字符串遍历
void strErgo()
{
	cout << "字符串遍历:"  <<endl;
	string s1 = "abcdefg";	//初始化字符串
	//通过数组方式遍历
	cout << "1、通过数组方式遍历:"  <<endl;
	for (int i = 0; i < s1.length(); i++)
	{
		cout << s1[i] << " ";
	}
	cout << endl;
 
	//通过迭代器遍历
	cout << "2、通过迭代器遍历:"  <<endl;
	for(string::iterator it = s1.begin(); it!= s1.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
 
	//通过at()方式遍历
	cout << "3、通过at()方式遍历:"  <<endl;
	for (int i = 0; i < s1.length(); i++)
	{
		cout << s1.at(i) << " ";		//此方式可以在越界时抛出异常
	}
	cout << endl;
}
 
//字符指针和字符串的转换
void strConvert()
{
	cout << "字符指针和字符串的转换:"  <<endl;
	string s1 = "abcdefg";	//初始化字符串
  
	cout << "string转换为char*:"  <<endl;
	//string转换为char*
	cout << s1.c_str() <<endl;	//s1.c_str()即为s1的char *形式
  
	cout << "char*获取string内容:"  <<endl;
	//char*获取string内容
	char buf[64] = {0};
	s1.copy(buf, 7);//复制7个元素
	cout << buf <<endl;
}
//字符串连接
void strAdd()
{
	cout << "字符串连接:"  <<endl;
 
	cout << "方式1:"  <<endl;
	string s1 = "123";
	string s2 = "456";
	s1 += s2;
	cout << "s1 = "<< s1 << endl;
 
	cout << "方式2:"  <<endl;
	string s3 = "123";
	string s4 = "456";
	s3.append(s4);
	cout << "s3 = "<< s3 << endl;
}
int main()
{
	//初始化
	strInit();
	cout << endl;
	//遍历
	strErgo();
	cout << endl;
	//字符指针类型和字符串转换
	strConvert();
	cout << endl;
	//字符串连接
	strAdd();
	cout << endl;
	system("pause");
	return 0;
}

 2》字符串的插入和删除

#include<iostream>
#include<string>
using namespace std;
int main()
{
   string s1="dsadsda";
   string s2="ADFGHJK";
   
   s1.insert(4,s2);
   cout<<s1<<endl;
   
    
   s1.insert( 0,s2,3,5 );
   cout<<s1<<endl;
   s1.erase(1,2);// 删除的范围

   cout<<s1<<endl;
   s1.erase(3); // 删除的所有的元素

}

运行结果:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值