学习C++标准库里面的string类(1)

1.c++ string find()  


#include <string>
#include <iostream>
using namespace std;

void main()
{
 ////find函数返回类型 size_type

 string s("1a2b3c4d5e6f7g8h9i1a2b3c4d5e6f7g8ha9i");
 string flag;
 string::size_type position;

 //find 函数 返回jk 在s 中的下标位置 
 position=s.find("jk");
 cout<<"position is : "<<position<<endl;

 //find 函数 返回flag 中任意字符 在s 中第一次出现的下标位置
 flag="c";
 position=s.find_first_of(flag);
 cout<<"s.find_first_of(flag) is : "<<position<<endl;

 //从字符串s 下标5开始,查找字符串b ,返回b 在s 中的下标
 position=s.find("b",5);
 cout<<"s.find(b,5) is : "<<position<<endl;

 //查找s 中flag 出现的所有位置。
 flag="a";
 position=0;
 int i=1;
 while((position=s.find_first_of(flag,position))!=string::npos)
 {
  //position=s.find_first_of(flag,position);
  cout<<"position  "<<i<<" : "<<position<<endl;
  position++;
  i++;
 }

 //查找flag 中与s 第一个不匹配的位置
 flag="acb12389efgxyz789";
 position=flag.find_first_not_of (s);
 cout<<"flag.find_first_not_of (s) :"<<position<<endl;

 //反向查找,flag 在s 中最后出现的位置
 flag="3";
 position=s.rfind (flag);
 cout<<"s.rfind (flag) :"<<position<<endl;


}

链接:http://huangws138.blog.163.com/blog/static/5879062120101143321388/



2,string中reverse_iterator函数如何使用?参数如何先择


如果你会用iterator,你就会用reverse_iterator,它只不过倒过来遍历而已,比如:倒过来打印一个string 的每个字符:

string s = "abc";
for (string::reverse_iterator i = s.rbegin(); i != s.rend(); ++i) {
	cout << *i;
}

还需要添加。


另外:C标准库 区别与C++ 标准库是有区别的。 

     C标准库里处理字符串主要是 #include<string.h>里面的函数。

      C++ 标准库里 处理字符串主要是 #include<string>里面的成员函数。这个功能要强大很多。



你可能感兴趣的:(学习C++标准库里面的string类(1))