此函數用於在字符串中搜索與字符串中指定的任何字符都不匹配的最後一個字符。
用法
考慮兩個字符串 str1 和 str2。它的語法是:
str1.find_last_not_of(str2);
參數
str:str 是用於搜索的字符串。
pos:它定義了開始搜索的位置。
n:標識要搜索的字符的字符數。
ch:它定義了要搜索的字符。
返回值
此函數返回不匹配的 l ast 字符的位置。
示例 1
讓我們看一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string str = "C is a procedure oriented language";
cout<< "String contains:" << str <<'\n';
cout<< str.find_last_not_of("C is a structural language");
return 0;
}
輸出:
String contains:C is a procedure oriented language 24
相關用法
- C++ String find_last_of()用法及代碼示例
- C++ String find_first_not_of()用法及代碼示例
- C++ String find_first_of()用法及代碼示例
- C++ String front()用法及代碼示例
- C++ String swap()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String append()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String resize()用法及代碼示例
- C++ String Find()用法及代碼示例
- C++ String crend()用法及代碼示例
- C++ String compare()用法及代碼示例
- C++ String empty()用法及代碼示例
- C++ String replace()用法及代碼示例
- C++ String at()用法及代碼示例
- C++ String insert()用法及代碼示例
- C++ String clear()用法及代碼示例
- C++ String Data()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String find_last_not_of()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。