如何在 c++ 中查找字符串中的子字符串
本文演示了在 C++ 中查找字符串中给定子字符串的方法。
使用 find
方法在 C++ 中查找字符串中的子字符串
最直接的解决方法是 find
函数,它是一个内置的字符串方法,它以另一个字符串对象作为参数。
#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::endl
using std::string;
int main(){
string str1 = "this is random string oiwao2j3";
string str2 = "oiwao2j3";
string str3 = "random s tring";
str1.find(str2) != string::npos ?
cout << "str1 contains str2" << endl :
cout << "str1 does not contain str3" << endl;
str1.find(str3) != string::npos ?
cout << "str1 contains str3" << endl :
cout << "str1 does not contain str3" << endl;
return EXIT_SUCCESS;
}
输出:
str1 contains str2
str1 does not contain str3
或者,你可以使用 find
来比较两个字符串中的特定字符范围。要做到这一点,你应该把范围的起始位置和长度作为参数传递给 find
方法。
#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::endl
using std::string;
using std::stoi;
int main(){
string str1 = "this is random string oiwao2j3";
string str3 = "random s tring";
constexpr int length = 6;
constexpr int pos = 0;
str1.find(str3.c_str(), pos, length) != string::npos ?
cout << length << " chars match from pos " << pos << endl :
cout << "no match!" << endl;
return EXIT_SUCCESS;
}
输出:
6 chars match from pos 0
使用 rfind
方法在 C++ 中查找字符串中的子字符串
rfind
方法的结构与 find
类似。我们可以利用 rfind
来寻找最后的子字符串,或者指定一定的范围来匹配给定的子字符串。
#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::endl
using std::string;
using std::stoi;
int main(){
string str1 = "this is random string oiwao2j3";
string str2 = "oiwao2j3";
str1.rfind(str2) != string::npos ?
cout << "last occurrence of str3 starts at pos "
<< str1.rfind(str2) << endl :
cout << "no match!" << endl;
return EXIT_SUCCESS;
}
输出:
last occurrence of str3 starts at pos 22
相关文章
在 JavaScript 中检查字符串是否是有效的 JSON 字符串
发布时间:2024/03/21 浏览次数:105 分类:JavaScript
-
本教程描述了如何在 Javascript 中检查 JSON 字符串是否有效。
使用 JavaScript 将图像转换为 Base64 字符串
发布时间:2024/03/16 浏览次数:174 分类:JavaScript
-
本文将讨论如何通过创建画布并将图像加载到其中,并使用文件读取器方法获取图像的相应字符串,将图像转换为其 base64 字符串表示。
在 PowerShell 中提取子字符串
发布时间:2024/02/07 浏览次数:200 分类:编程语言
-
本文将讨论如何使用 PowerShell 的字符串库有效地提取字符串中的子字符串。作为 Windows 管理员的一个典型场景是找出一种方法来在称为子字符串的字符串中查找特定的文本片段
在 PowerShell 中查找子字符串的位置
发布时间:2024/02/07 浏览次数:112 分类:编程语言
-
本教程将教你在 PowerShell 中查找子字符串的位置。PowerShell 中的字符串和子字符串 字符串是 PowerShell 中使用的常见数据类型。
将 JSON 字符串转换为 C# 对象
发布时间:2024/01/19 浏览次数:101 分类:编程语言
-
本教程演示如何使用 Newtonsoft.Json 包或 JavaScriptSerializer 提供的 DeserializeObject 函数将 JSON 字符串转换为 C#
C# 将对象转换为 JSON 字符串
发布时间:2024/01/19 浏览次数:192 分类:编程语言
-
本文介绍如何将 C# 对象转换为 C# 中的 JSON 字符串的不同方法。它介绍了 JavaScriptSerializer().Serialize(),JsonConvert.SerializeObject()和 JObject.FromObject()之类的方法。