迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > C++ >

如何在 c++ 中查找字符串中的子字符串

作者:迹忆客 最近更新:2023/04/09 浏览次数:

本文演示了在 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

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 PowerShell 中提取子字符串

发布时间:2024/02/07 浏览次数:200 分类:编程语言

本文将讨论如何使用 PowerShell 的字符串库有效地提取字符串中的子字符串。作为 Windows 管理员的一个典型场景是找出一种方法来在称为子字符串的字符串中查找特定的文本片段

C# 将对象转换为 JSON 字符串

发布时间:2024/01/19 浏览次数:192 分类:编程语言

本文介绍如何将 C# 对象转换为 C# 中的 JSON 字符串的不同方法。它介绍了 JavaScriptSerializer().Serialize(),JsonConvert.SerializeObject()和 JObject.FromObject()之类的方法。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便