public member function
<string>

std::basic_string::find_last_not_of

string (1)
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const;
c-string (2)
size_type find_last_not_of (const charT* s, size_type pos = npos) const;
buffer (3)
size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
character (4)
size_type find_last_not_of (charT c, size_type pos = npos) const;
string (1)
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const noexcept;
c-string (2)
size_type find_last_not_of (const charT* s, size_type pos = npos) const;
buffer (3)
size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
character (4)
size_type find_last_not_of (charT c, size_type pos = npos) const noexcept;
Find non-matching character in string from the end
Searches the basic_string for the last character that does not match any of the characters specified in its arguments.

当指定pos时,搜索仅包括位置pos或之前的字符,忽略pos之后的任何可能出现的情况。

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

参数

str
Another basic_string with the set of characters to be used in the search.
pos
字符串中要考虑在搜索中的最后一个字符的位置。
任何大于或等于字符串长度的值(包括basic_string::npos)都意味着搜索整个字符串。
注意:第一个字符用值表示0(不是1).
s
指向字符数组的指针。
如果指定了参数n(3),则数组中的前n个字符用于搜索。
否则(2),期望一个以空字符结尾的序列:用于搜索的字符序列的长度由第一个出现的空字符确定。
n
要搜索的字符值的数量。
c
要搜索的单个字符。

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

返回值

第一个不匹配字符的位置。
If no such characters are found, the function returns basic_string::npos.

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

示例

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

int main ()
{
  std::string str ("Please, erase trailing white-spaces   \n");
  std::string whitespaces (" \t\f\v\n\r");

  std::string::size_type found = str.find_last_not_of(whitespaces);
  if (found!=std::string::npos)
    str.erase(found+1);
  else
    str.clear();            // str is all whitespace

  std::cout << '[' << str << "]\n";

  return 0;
}

[Please, erase trailing white-spaces]


复杂度

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

迭代器有效性

没有变化。

数据竞争

该对象被访问。

异常安全

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

另见