C++字符串

57 篇文章 2 订阅
这篇博客涵盖了C++编程中的多个主题,包括使用计时器实现图形移动,字符串操作如长度计算、连接、查找子串、数据处理以及模糊检索,还涉及到多线程技术。同时,展示了如何处理和分析字符串中的数字,以及进行英汉词条解析和判断输入字符是否为数字。此外,还涉及到了子串数量统计和字符串分割存储到向量中。
摘要由CSDN通过智能技术生成
//复习:计时器与多线程
#include <windows.h>
#include <iostream>
#include <ctime>
#include "basic.cpp"
using namespace std;

class test
{
private:
	clock_t t1,t2;
	int x,y;
public:		
	test()
	{
		x=10;y=10;
		t1=clock();
		t2=clock();
	}
	void draw()
	{
		gotoxy(x,y);
		cout<<"¤";//在(x,y)的位置上画¤
	}
	void erase()
	{
		gotoxy(x,y);
		cout<<"  ";//在(x,y)的位置上画空格,也就意味着将¤删除
	}
	void move1()//t1
	{
		if(clock()-t1>50)//50ns就画一次,呈现出来的就是图形移动了
		{
			draw();
			t1=clock();
		}
	}
	void move2()//t2-key
	{
		if(clock()-t2>50)
		{
			erase();
			if(GetAsyncKeyState(VK_ESCAPE))exit(0);
			if(GetAsyncKeyState(VK_LEFT))--x;
			if(GetAsyncKeyState(VK_RIGHT))++x;
			draw();//坐标移动完后重新画一个图案
			t2=clock();//重新计时
		}
	}
	void move()//control
	{
		while(true)
		{
			move1();
			move2();
		}
	}
};
int main()
{
	test t;
	t.move();
	return 0;
}
//字符串:长度与连接
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string s;
	cout<<"input string:";
	cin>>s;
	cout<<"the string is:"<<s<<endl;
	cout<<"the length is:"<<s.size()<<endl;
	cout<<"the added string is:"<<s+"123"<<endl;
//---------------------------------------------------
	cout<<"max length="<<s.max_size()<<endl;//c.max_size()函数:返回容器C可容纳的最多元素个数
	return 0;
}
//查找子串
#include <iostream>
#include <string>
using namespace std;

void main()
{
	string s="abcde";
	string s1="bc";
	//子串的头尾位置,见图
	string::size_type n1,n2;
	if(s.find(s1,0)!=string::npos)
	{
		n1=s.find(s1,0);//从0位置开始查找s1,返回s1字符串首字符的地址;没有找到时返回值是-1
		n2=n1+s1.size();
		cout<<"n1="<<n1<<endl;
		cout<<"n2="<<n2<<endl;
	}
	else
	{
		cout<<"no this string!"<<endl;
	}
}
//数据处理-简单类型
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string s="-67-89-95-100-78-";
	string t;
	long n1,n2,pos=0;
	while(true)
	{
		n1=s.find("-",pos);//找到第一个“-”
		n2=s.find("-",n1+1);//找到第二个“-”
		t=s.substr(n1+1,n2-n1-1);//取出两个“-”之间的字符串,即67
		cout<<t<<endl;
		if(n2+1<s.size())
			pos=n2;
		else break;	
	}
	return 0;
}
//数据处理-复合类型
#include <iostream>
#include <string>
#include <conio.h>
using namespace std;

int main()
{
	string s="-王小一-67-李小二-89-张小三-95-";
	string t1,t2;
	long n1,n2,n3,pos=0;
	while(true)
	{
		n1=s.find("-",pos);//找到第一个“-”
		n2=s.find("-",n1+1);//找到第二个“-”
		n3=s.find("-",n2+1);//找到第三个“-”
		t1=s.substr(n1+1,n2-n1-1);//输出第一个“-”和第二个“-”之间的字符串,即王小一
		t2=s.substr(n2+1,n3-n2-1);//输出第二个“-”和第三个“-”之间的字符串,即67
		cout<<t1<<"-"<<t2<<endl;//将名字以及对应的成绩一起输出
		if(n3+1<s.size())
			pos=n3;
		else break;	
		getch();
	}
	return 0;
}

getch()的用法:所在头文件:conio.h
  函数特点:从控制台读取一个字符,但不显示在屏幕上
  函数原型:int getch(void)
  返回值:读取的字符
  例如:
  char ch;或int ch;
  getch();或ch=getch();
  用getch();会等待你按下任意键,再继续执行下面的语句;(有时程序执行完出现闪退问题,可以用该语句避免)
  用ch=getch();会等待你按下任意键之后,把该键字符所对应的ASCII码赋给ch,再执行下面的语句。

//模糊检索 
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string s="-王小一-67-李小二-89-张小二-95-";
	string s1="小二",t1,t2;
	long n1,n2,n3,pos=0;
	while(true)
	{
		if(s.find(s1,pos)!=string::npos)//表明从s1字符串开始查
		{
			n1=s.find(s1,pos);//找到目标字符串的首位
			n1=s.rfind("-",n1);//找到第四个“-”
			n2=s.find("-",n1+1);//找到第五个“-”
			n3=s.find("-",n2+1);//找到第六个“-”
			t1=s.substr(n1+1,n2-n1-1);//输出第四个与第五个之间的字符串,即89
			t2=s.substr(n2+1,n3-n2-1);//输出第五个与第六个之间的字符串,即张小三
			cout<<t1<<"-"<<t2<<endl;
			pos=n3;
		}
		else break;	
	}
	return 0;
}
//字符串:倒序
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string s="今晚12点,图书馆门前见!";
	string::size_type i,n=s.size();
//string::size_type在不同的机器上,长度是可以不同,并非固定的长度。但只要使用了这个类型,就使得你的程序适合这个机器,与实际机器匹配。
	string temp=s;
	for(i=0;i<n;++i)
	{
		temp[i]=s[n-i-1];
	}
	cout<<temp<<endl;
}
//字符串:变码 
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string s="今晚12点,图书馆门前见!";
	string::size_type i,n=s.size();
	for(i=0;i<n;++i)
	{
		s[i]=s[i]+5;//将字符串整体向右移动五个字节
	}
	cout<<s<<endl;
	for(i=0;i<n;++i)
	{
		s[i]=s[i]-5;//将字符串整体向左移动五个字节
	}
	cout<<s<<endl;
}
//英汉词条解析 
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int main()
{
	string s="ability   n.能力",s1,s2;
	string::size_type n1,n2;
	n1=0;
	n2=s.find(" ",n1);//找到第一个空格,并返回其坐标
	s1=s.substr(n1,n2-n1);//n2-n1是英语单词的长度,所以s1是英语单词字符串
	cout<<s1<<endl;
	//=====================
	n1=n2+1;
	while(true)
	{
		if(s[n1]==' ')
			++n1;
		else 
			break;
	}//跳过所有的空格
	n2=s.size();//n2表示去掉空格后的字符串长度
	s2=s.substr(n1,n2-n1);//将英语单词复制
	cout<<s2<<endl;
	return 0;
}
//判断输入字符是否为数字
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

class test
{
private:
	string s;
	string::size_type i,n;
public:
	test()
	{
		cout<<"input a number:";
		cin>>s;
		n=s.size();
	}
	void output()
	{
		int flag=1;
		for(i=0;i<n;++i)
		{
			if(!isdigit(s[i]))//isdigit函数作用:检查其参数是否为十进制数字字符
			{
				flag=0;//一旦有字符不是十进制数字字符,则标记flag=0
				break;
			}
		}
		if(flag==1)
			cout<<"yes!"<<endl;
		else
			cout<<"no!"<<endl;
	}
};
int main()
{
	test s;
	s.output();
	return 0;
}
//判断输入字符是否为数字
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

class test
{
private:
	string s;
	string::size_type i,n;
public:
	test()
	{
		cout<<"input a number:";
		cin>>s;
		n=s.size();
	}
	void output()
	{
		int flag=1;
		for(i=0;i<n;++i)
		{
			if(!isdigit(s[i]))
			{
				flag=0;
				break;
			}
		}
		if(flag==1)
		{
			cout<<"yes!"<<endl;
			cout<<str2num(s)+100<<endl; //将原字符串向右移100个字符空间
		}
		else
			cout<<"no!"<<endl;
	}
	int str2num(string s)
	{
		stringstream ss;
		int temp;
		ss<<s;
		ss>>temp;
		return temp;
	}
};
int main()
{
	test s;
	s.output();
	return 0;
}
//统计子串数量 
#include <iostream>
#include <string> 
#include <sstream>
using namespace std;
class test
{
private:
	string s,s1;
	int n;
public:
	test()
	{
		s="12ab23ab45ab";
		s1="ab";
	}	
	void output()
	{
		n=0;
		string::size_type pos=0;
		while(true)
		{
			pos=s.find(s1,pos);//从0位置开始找字符串s1="ab",返回字符串s1第一次出现的位置
			if(pos!=string::npos)
			{
				++n;
				++pos;
			}
			else break;
		}//输出的n是字符串s1的次数
		cout<<"n="<<n<<endl;
	}
};
int main()
{
	test t;
	t.output();
	return 0;
}
#include <iostream>
#include <string>
#include <vector> 
using namespace std;

class test
{
private:
	string s;
	vector<string> a;
	vector<string>::iterator p;
public:
	test()
	{
		s="-123-1234-12345-";
	}	
	void input()
	{
		string::size_type pos,n;
		pos=0;
		while(true)
		{
			if(s.find("-",pos)!=string::npos)
			{
				pos=s.find("-",pos);//找到第一个“-”,并返回其坐标
				n=++pos;//指向第一个数字
				if(s.find("-",pos)!=string::npos)
				{
					pos=s.find("-",pos);
					a.push_back(s.substr(n,pos-n));//将“-”之间的数字一一输出
				}
				else break;
			}
			else break;
		}
	}
	void browse()
	{
		for(p=a.begin();p!=a.end();++p)
		{
			cout<<*p<<endl;//统计字符串长度
		}
	}
};
int main()
{
	test s;
	s.input();
	s.browse();
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值