C++ 有一个预定义函数 substr 来返回字符串的一部分,并有一个比较函数来检查字符序列。后缀表示添加到单词末尾的一组字符。
在本文中,我们将查找以给定后缀结尾的字符串。
让我们通过一些字符串来理解后缀的示例 -
Tutorialspoint - 字符n和t代表后缀。
Tutorix - 字符 r、i 和 x 代表后缀。
请注意,单词中某些字符的反向长度称为后缀。
Substr()
该函数用于通过定义字符串的输入来计算字符串中字符的长度。
compare()
该函数用于比较给定字符串或子字符串中字符的匹配情况。如果匹配的字符满足,则返回0。
我们将使用头文件 ‘iostream’ 和 ‘string’ 启动程序。
之后,我们将启动主函数并将字符串值声明给变量'Ecom'。
稍后我们将‘Ecom’数组的大小初始化为变量‘n。
现在我们通过在示例中给出不同的循环来使用相同的逻辑,并执行以下操作 -
Ecom[i].substr(Ecom[i].length()-total_character_in_number).compare("suffix_name")==0
在示例 1 中,我们使用 for 循环来迭代字符串 'Ecom' 的每个索引。
在示例 2 中,我们使用 while 循环来迭代字符串 'Ecom' 的每个索引。
在示例 1 和示例 2 中,我们使用 if 语句来表示两个方法 - substr() 和 compare() 到 Ecom[i ] 它验证后缀的长度最多为某些字符,并通过将该字符进行比较方法,它将将该字符设置为等于 0,这将返回给定的后缀。
最后,我们借助字符串‘Ecom[i]’打印输出语句。
在此程序中,我们将使用 for 循环执行以给定后缀结尾的字符串。
#include <iostream> #include <string> using namespace std; int main(){ string Ecom[6] = {"Myntra","Synasera","Myra","Condera","Reseme","Beautiful"}; int n = sizeof(Ecom)/sizeof(Ecom[0]); for(int i = 0; i < n; i++) { if(Ecom[i].substr(Ecom[i].length() - 2).compare("ra") == 0) { cout<<"The suffix ra used in the string: "<<Ecom[i]<<endl; } } return 0; }
The suffix ra used in the string: Myntra The suffix ra used in the string: Synasera The suffix ra used in the string: Myra The suffix ra used in the string: Condera
在此程序中,我们将使用 while 循环执行以给定后缀结尾的字符串。
#include<iostream> #include<string> using namespace std; int main() { string Ecom[6] = {"Myntra","Synasera","Myra","Colorful","Reseme","Beautiful"}; int n = sizeof(Ecom)/sizeof(Ecom[0]); int i; while(i < n) { if(Ecom[i].substr(Ecom[i].length() - 3).compare("ful") == 0) { cout<<"The suffix ful used in the string: "<<Ecom[i]<<endl; } i++; } return 0; }
The suffix ful used in the string: Colorful The suffix ful used in the string: Beautiful
我们探讨了以给定后缀结尾的字符串的概念。我们已经了解了“substr()”和“compare()”方法如何在多个字符串中查找相似的后缀字符。另一方面,我们也将相同的概念应用于前缀程序。该程序有助于构建应用程序,例如网络搜索框、电子表格搜索、SEO 中使用的元数据等。
以上是查找以给定后缀结尾的字符串的详细内容。更多信息请关注PHP中文网其他相关文章!