C++中String类的截取字符串学习笔记

Java中截取字符串的方法有subString()的方法,可以方便的截取所需要的字符串,下面来学习下C++中截取字符串的方法。

#include <iostream>
#include <string>
#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std; 
int main(int argc, char** argv) {
	string str="The current page will delete.";
	cout <<str.substr(2)<<endl;
	cout <<str.substr(str.find("c",0))<<endl;
	cin.get();
	return 0;
}


头文件#include <stdio.h>是用来C语言打印日志的

substr截取字符串参数是开始截取字符串的小标索引

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值