码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 在字符串中插入子串+判断字符串是否由空格组成

时间:2014-05-07 11:26:35      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:c++ string   字符串中插入子串   判断字符串由blanks组成   

// Example3.cpp : 定义控制台应用程序的入口点。

#include "StdAfx.h"
#include <string>
#include <iostream>
using namespace std;

int main(void)
{
	string str,str1,str2;
	int index;

	//判断截取的子串是否由blanks组成
	str="   cjc is a master.";
	str1="cjc is a master.";
	index=str.find("cjc");
	str.assign(str.c_str(),index);
	
	if(str.find_first_not_of(" ")==-1)
	{
		cout<<"The string is constructed of blanks..."<<endl;
	}
	else
	{
		cout<<str<<endl;
	}

	//在字符串中插入子串
	index=str1.find("master");
	str2=str1.substr(index);
	str1.assign(str1.c_str(),index);
	str=str1+"good "+str2;
	cout<<str<<endl;

	system("pause");
	return 0;
}
bubuko.com,布布扣

C++ 在字符串中插入子串+判断字符串是否由空格组成,布布扣,bubuko.com

C++ 在字符串中插入子串+判断字符串是否由空格组成

标签:c++ string   字符串中插入子串   判断字符串由blanks组成   

原文地址:http://blog.csdn.net/cjc211322/article/details/25162589

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!