此函数用于查找由其参数指定的序列最后一次出现的字符串。
用法
考虑字符串 'str' 和 key 字符串 's'。语法是:
str.rfind(s);
str.rfind(s,pos);
str.rfind(s,pos,n);
str.rfind(ch);
参数
str:str 是用于搜索的字符串对象。
pos:它定义了开始搜索的最后一个字符的位置。
n:搜索时要考虑的字符数
ch:要搜索的字符值。
例子1
让我们看看这个简单的例子。
#include<iostream>
using namespace std;
int main()
{
string str="This is an object oriented programming language";
string key="language";
int i=str.rfind(key);
cout<<i;
return 0;
}
输出:
39
例子2
让我们通过传递字符值来看看另一个简单的例子。
#include<iostream>
using namespace std;
int main()
{
string str="Computer Science";
int i=str.rfind('e');
cout<<i;
return 0;
}
输出:
15
例子3
当参数中提到位置 pos 时,让我们看看这个例子。
#include<iostream>
using namespace std;
int main()
{
string str="Digital electronics is a B.tech subject";
int i=str.rfind("is",21);
cout<<i;
return 0;
}
输出:
20
示例 4
当要匹配的字符数由其参数指定时,让我们看看这个示例。
#include<iostream>
using namespace std;
int main()
{
string str="Java is an object oriented programming language";
int i=str.rfind("programming",40,7);
cout<<i;
return 0;
}
输出:
27
相关用法
- C++ String resize()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String rend()用法及代码示例
- C++ String reserve()用法及代码示例
- C++ String rbegin()用法及代码示例
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ String begin()用法及代码示例
- C++ String size()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String at()用法及代码示例
- C++ String insert()用法及代码示例
- C++ String clear()用法及代码示例
- C++ String Data()用法及代码示例
- C++ String cend()用法及代码示例
注:本文由纯净天空筛选整理自 C++ String rfind()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。