public member function
<string>

std::basic_string::rfind

string (1)
size_type rfind (const basic_string& str, size_type pos = npos) const;
c-string (2)
size_type rfind (const charT* s, size_type pos = npos) const;
buffer (3)
size_type rfind (const charT* s, size_type pos, size_type n) const;
character (4)
size_type rfind (charT c, size_type pos = npos) const;
string (1)
size_type rfind (const basic_string& str, size_type pos = npos) const noexcept;
c-string (2)
size_type rfind (const charT* s, size_type pos = npos) const;
buffer (3)
size_type rfind (const charT* s, size_type pos, size_type n) const;
character (4)
size_type rfind (charT c, size_type pos = npos) const noexcept;
查找字符串中最后一次出现
basic_string中搜索其参数指定的序列的最后一次出现。

当指定了pos时,搜索只包括从位置pos或之前开始的字符序列,忽略在pos之后开始的任何可能的匹配。

该函数使用traits_type::eq来确定字符的等价性。

参数

str
另一个要搜索的basic_string
pos
要被认为是匹配开始的字符串中最后一个字符的位置。
任何大于或等于字符串长度的值(包括basic_string::npos)都意味着搜索整个字符串。
注意:第一个字符用值表示0(不是1).
s
指向字符数组的指针。
如果指定了参数n (3),则要匹配的序列是数组中的前n个字符。
否则(2),期望一个以 null 结尾的序列:要匹配的序列的长度由第一个 null 字符确定。
n
要匹配的字符序列的长度。
c
要搜索的单个字符。

charTbasic_string 的字符类型(即,它的第一个模板参数)。
成员类型size_type是一种无符号整型类型。

返回值

最后一次匹配的第一个字符的位置。
如果没有找到匹配项,该函数返回basic_string::npos

成员类型size_type是一种无符号整型类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// string::rfind
#include <iostream>
#include <string>

int main ()
{
  std::string str ("The sixth sick sheik's sixth sheep's sick.");
  std::string key ("sixth");

  std::string::size_type found = str.rfind(key);
  if (found!=std::string::npos)
    str.replace (found,key.length(),"seventh");

  std::cout << str << '\n';

  return 0;
}

The sixth sick sheik's seventh sheep's sick.


复杂度

未指定,但通常最多是字符串长度(或pos)乘以要匹配的字符数(最坏情况)的线性关系。

迭代器有效性

没有变化。

数据竞争

该对象被访问。

异常安全

如果已知s未指向足够长的数组,会导致未定义行为
否则,该函数永远不会抛出异常(无抛出保证)。

另见