C++ string 类的 find 方法实例详解

简介:

1、C++ 中 string 类的 find 方法列表

复制代码
size_type std::basic_string::find(const basic_string &__str, size_type __pos);
size_type std::basic_string::find(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::find(const _CharT *__s, size_type __pos);
size_type std::basic_string::find(_CharT __c, size_type __pos);

size_type std::basic_string::rfind(const basic_string &__str, size_type __pos);
size_type std::basic_string::rfind(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::rfind(const _CharT *__s, size_type __pos);
size_type std::basic_string::rfind(_CharT __c, size_type __pos);

size_type std::basic_string::find_first_of(const basic_string &__str, size_type __pos);
size_type std::basic_string::find_first_of(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::find_first_of(const _CharT *__s, size_type __pos);
size_type std::basic_string::find_first_of(_CharT __c, size_type __pos);

size_type std::basic_string::find_last_of(const basic_string &__str, size_type __pos);
size_type std::basic_string::find_last_of(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::find_last_of(const _CharT *__s, size_type __pos);
size_type std::basic_string::find_last_of(_CharT __c, size_type __pos);

size_type std::basic_string::find_first_not_of(const basic_string &__str, size_type __pos);
size_type std::basic_string::find_first_not_of(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::find_first_not_of(const _CharT *__s, size_type __pos);
size_type std::basic_string::find_first_not_of(_CharT __c, size_type __pos);

size_type std::basic_string::find_last_not_of(const basic_string &__str, size_type __pos);
size_type std::basic_string::find_last_not_of(const _CharT *__s, size_type __pos, size_type __n);
size_type std::basic_string::find_last_not_of(const _CharT *__s, size_type __pos);
size_type std::basic_string::find_last_not_of(_CharT __c, size_type __pos);
复制代码

 本文以代码和运行实例进行解析,实例中的颜色部分的规则如下:

黄色底色:在原字符串中经过了搜索,没有黄色底色的表示不在我们的搜索范围内

红色字体:搜索错误的地方

绿色字体:搜索正确


下面逐个解析

  find()、

  rfind()、

  find_first_of()、

  find_last_of()、

  find_first_not_of()、

  find_last_not_of()


 

2、find()

  find函数在C++的头文件basic_string.h中有四种定义,定义如下: 

  2.1)第一个定义:size_type find(const _CharT* __s, size_type __pos, size_type __n) const;

复制代码
       /**
       *  @brief  Find position of a C substring.
       *  @param __s  C string to locate.
       *  @param __pos  Index of character to search from.
       *  @param __n  Number of characters from @a s to search for.
       *  @return  Index of start of first occurrence.
       *
       *  Starting from @a __pos, searches forward for the first @a
       *  __n characters in @a __s within this string.  If found,
       *  returns the index where it begins.  If not found, returns
       *  npos.
      */
      size_type
      find(const _CharT* __s, size_type __pos, size_type __n) const;
复制代码

实例代码:

复制代码
 1 void xx_find_3()
 2 {
 3     printf("%s():\n", __func__);
 4     const string strSrc = "abcdefghijklmnopqrstuvwxyz";
 5     const char * pStr = NULL;
 6     int pos = 0;
 7 
 8     pStr= "cdefppp";
 9     pos = strSrc.find(pStr, 0, 4); 
10     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
11 
12     pStr= "cdefppp";
13     pos = strSrc.find(pStr, 0, 5); 
14     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
15 
16     pStr= "cdefppp";
17     pos = strSrc.find(pStr, 5, 5); 
18     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
19 }
复制代码

运行结果:

复制代码
xx_find_3():
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

   2.2)第二个定义:size_type find(const basic_string& __str, size_type __pos = 0) const

  View Code

实例代码:

复制代码
void xx_find_1()
{
    printf("%s():\n", __func__);
    const string strSrc = "abcdefghijklmnopqrstuvwxyz";
    string strDst;
    size_t pos = 0;

    strDst= "abcdef";
    pos = strSrc.find(strDst);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.find(strDst, 0); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    strDst = "cdef";
    pos = strSrc.find(strDst, 2); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.find(strDst, 3); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
}
复制代码

运行结果:

复制代码
xx_find_1():
pos =  0    [find]    abcdefghijklmnopqrstuvwxyz
pos =  0    [find]    abcdefghijklmnopqrstuvwxyz
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

    2.3)第三个定义:size_type find(const _CharT* __s, size_type __pos = 0) const

复制代码
      /**
       *  @brief  Find position of a C string.
       *  @param __s  C string to locate.
       *  @param __pos  Index of character to search from (default 0).
       *  @return  Index of start of first occurrence.
       *
       *  Starting from @a __pos, searches forward for the value of @a
       *  __s within this string.  If found, returns the index where
       *  it begins.  If not found, returns npos.
      */
      size_type
      find(const _CharT* __s, size_type __pos = 0) const
      {
    __glibcxx_requires_string(__s);
    return this->find(__s, __pos, traits_type::length(__s));
      }
复制代码

示例代码:

复制代码
 1 void xx_find_2()
 2 {
 3     printf("%s():\n", __func__);
 4     const string strSrc = "abcdefghijklmnopqrstuvwxyz";
 5     const char * pStr = NULL;
 6     size_t pos = 0;
 7 
 8     pStr = "cdef";
 9     pos = strSrc.find(pStr);
10     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
11 
12     pos = strSrc.find(pStr, 0); 
13     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
14 
15     pos = strSrc.find(pStr, 2); 
16     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
17 
18     pos = strSrc.find(pStr, 3); 
19     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
20 }
复制代码

运行结果:

复制代码
xx_find_2():
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

 

  2.4)第四个定义:size_type find(_CharT __c, size_type __pos = 0) const _GLIBCXX_NOEXCEPT;

  View Code

示例代码:

复制代码
 1 void xx_find_4()
 2 {
 3     printf("%s():\n", __func__);
 4     const string strSrc = "abcdefghijklmnopqrstuvwxyz";
 5     int pos = 0;
 6 
 7     char c = 'b';
 8     pos = strSrc.find(c);
 9     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
10 
11     pos = strSrc.find(c, 0); 
12     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
13 
14     pos = strSrc.find(c, 1); 
15     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
16 
17     pos = strSrc.find(c, 2); 
18     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
19 }
复制代码

运行结果:

复制代码
xx_find_4():
pos =  1    [find]    abcdefghijklmnopqrstuvwxyz
pos =  1    [find]    abcdefghijklmnopqrstuvwxyz
pos =  1    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

3、rfind()

  rfind()函数在basic_string.h中同样有四种定义,定义如下:

  3.1)第一个定义:size_type rfind(const basic_string& __str, size_type __pos = npos) const _GLIBCXX_NOEXCEPT

  View Code

   实例代码:

复制代码
 1 void xx_rfind_1()
 2 {
 3     //size_type std::basic_string::rfind(const basic_string &__str, size_type __pos);
 4     printf("%s():\n", __func__);
 5     const string strSrc = "abcdefghijklmnopqrstuvwxyz";
 6     string strDst;
 7     size_t pos = 0;
 8 
 9     strDst= "uvw";
10     pos = strSrc.rfind(strDst);
11     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
12 
13     pos = strSrc.rfind(strDst, 25);
14     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
15 
16     pos = strSrc.rfind(strDst, 20);
17     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
18 
19     pos = strSrc.rfind(strDst, 19);
20     printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
21 }
复制代码

  运行结果:

复制代码
xx_rfind_1():
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

  3.2)第二个定义:size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const;

  View Code

  示例代码:

复制代码
void xx_rfind_2()
{
    //size_type std::basic_string::rfind(const _CharT *__s, size_type __pos, size_type __n);
    printf("%s():\n", __func__);
    const string strSrc = "abcdefghijklmnopqrstuvwxyz";
    const char * p = NULL;
    size_t pos = 0;

    p = "uvw";
    pos = strSrc.rfind(p, 25, 2); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 20, 2); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 19, 2); 
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
}
复制代码

  运行结果:

复制代码
xx_rfind_2():
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

  3.3)第三个定义:size_type rfind(const _CharT* __s, size_type __pos = npos) const

  View Code

示例代码:

复制代码
void xx_rfind_3()
{
    //size_type std::basic_string::rfind(const _CharT *__s, size_type __pos);
    printf("%s():\n", __func__);
    const string strSrc = "abcdefghijklmnopqrstuvwxyz";
    const char * p = NULL;
    size_t pos = 0;

    p = "uvw";
    pos = strSrc.rfind(p);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 25);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 20);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 19);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
}
复制代码

运行结果:

复制代码
xx_rfind_3():
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

  3.4)第四个定义: size_type rfind(_CharT __c, size_type __pos = npos) const

  View Code

示例代码:

复制代码
void xx_rfind_4()
{
    //size_type std::basic_string::rfind(_CharT __c, size_type __pos);
    printf("%s():\n", __func__);
    const string strSrc = "abcdefghijklmnopqrstuvwxyz";
    size_t pos = 0;

    char p = 'u';
    pos = strSrc.rfind(p);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 25);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 20);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");

    pos = strSrc.rfind(p, 19);
    printf("pos = %2d\t[%s]\n", pos, -1 == pos ? "not find" : "find");
}
复制代码

运行结果:

复制代码
xx_rfind_4():
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = 20    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]  abcdefghijklmnopqrstuvwxyz
复制代码

4、find_first_of()

  find_first_of()函数也有4个定义,函数作用是在当前字符串中查找给定参数中的任意字符的第一次出现位置,有点儿拗口,下面用实例说明。

  4.1)第一个定义 size_type find_first_of(const basic_string& __str, size_type __pos = 0)

  View Code

示例代码

复制代码
 1 void xx_find_first_of_1()
 2 {
 3     //size_type std::basic_string::find_first_of(const basic_string &__str, size_type __pos);
 4     printf("%s():\n", __func__);
 5     const string strSrc = "abcdefghijklmnopqrstuvwxyz";
 6     string strDst;
 7     size_t pos = 0;
 8 
 9     strDst= "cde";
10     pos = strSrc.find_first_of(strDst);//default value of pos is 0
11     printf("pos = %2d\t[%s]\n", pos, string::npos == pos ? "not find" : "find");
12 
13     pos = strSrc.find_first_of(strDst, 2); 
14     printf("pos = %2d\t[%s]\n", pos, string::npos == pos ? "not find" : "find");
15 
16     pos = strSrc.find_first_of(strDst, 3); 
17     printf("pos = %2d\t[%s]\n", pos, string::npos == pos ? "not find" : "find");
18 
19     pos = strSrc.find_first_of(strDst, 4); 
20     printf("pos = %2d\t[%s]\n", pos, string::npos == pos ? "not find" : "find");
21 
22     pos = strSrc.find_first_of(strDst, 5); 
23     printf("pos = %2d\t[%s]\n", pos, string::npos == pos ? "not find" : "find");
24 }
复制代码

运行结果

复制代码
xx_find_first_of_1():
find [cde]
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos =  2    [find]    abcdefghijklmnopqrstuvwxyz
pos =  3    [find]    abcdefghijklmnopqrstuvwxyz
pos =  4    [find]    abcdefghijklmnopqrstuvwxyz
pos = -1    [not find]    abcdefghijklmnopqrstuvwxyz
复制代码

 



本文转自郝峰波博客园博客,原文链接:http://www.cnblogs.com/fengbohello/p/4533328.html,如需转载请自行联系原作者


相关文章
|
28天前
|
C语言 C++ 容器
【c++丨STL】string模拟实现(附源码)
本文详细介绍了如何模拟实现C++ STL中的`string`类,包括其构造函数、拷贝构造、赋值重载、析构函数等基本功能,以及字符串的插入、删除、查找、比较等操作。文章还展示了如何实现输入输出流操作符,使自定义的`string`类能够方便地与`cin`和`cout`配合使用。通过这些实现,读者不仅能加深对`string`类的理解,还能提升对C++编程技巧的掌握。
67 5
|
28天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
50 2
|
1月前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
103 5
|
1月前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
88 4
|
1月前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
105 4
|
2月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
32 4
|
2月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
32 4
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
29 1
|
2月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
2月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)