string 里的 find

通常来说,find函数用于寻找某个序列的在string中第一次出现的位置。

find函数有以下四种重载版本:

1
2
3
4
size_t  find ( const  string& str,  size_t  pos = 0)  const  noexcept;
size_t  find ( const  char * s,  size_t  pos = 0)  const ;
size_t  find ( const  char * s,  size_t  pos, size_type n)  const ;
size_t  find ( char  c,  size_t  pos = 0)  const  noexcept;

参数说明:

str/s/c:要寻找的序列,可以是字符串(版本1),也可以是字符串字面值或者说C风格字符串(版本2、3,在版本3中,所寻找的序列是从s[0]开始的前n个字符),也可以是字符(版本4)。

pos:从string的pos位置开始寻找(注意第一个位置是0)。

函数返回序列第一次出现的位置,如果没有找到则返回string::npos。

样例:(摘自cplusplus.com)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>       // std::cout
#include <string>         // std::string
 
int  main ()
{
   std::string str ( "There are two needles in this haystack with needles." );
   std::string str2 ( "needle" );
 
   // different member versions of find in the same order as above:
   std:: size_t  found = str.find(str2);
   if  (found!=std::string::npos)
     std::cout <<  "first 'needle' found at: "  << found <<  '\n' ;
 
   found=str.find( "needles are small" ,found+1,6);
   if  (found!=std::string::npos)
     std::cout <<  "second 'needle' found at: "  << found <<  '\n' ;
 
   found=str.find( "haystack" );
   if  (found!=std::string::npos)
     std::cout <<  "'haystack' also found at: "  << found <<  '\n' ;
 
   found=str.find( '.' );
   if  (found!=std::string::npos)
     std::cout <<  "Period found at: "  << found <<  '\n' ;
 
   // let's replace the first needle:
   str.replace(str.find(str2),str2.length(), "preposition" );
   std::cout << str <<  '\n' ;
 
   return  0;
}

标准输出结果:

first 'needle' found at: 14

second 'needle' found at: 44 

'haystack' also found at: 30 

Period found at: 51 

There are two prepositions in this haystack with needles.

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值