【C++】C++中的find方法介绍

目录

一.find方法基本用法

1.查找字符

2.查找子字符串

3.查找子字符串(从指定位置开始)

4.查找字符范围

5.查找不包含特定字符的范围

二.使用string::npos返回无效位置

三.总结


在C++中, std::string 类的 find 成员函数用于查找子字符串在字符串中的位置。 find 函数有多个重载版本,允许你以不同的方式执行查找操作。

一.find方法基本用法

cpp 复制代码
#include <iostream>
#include <string>

int main() {
    std::string str = "Hello World!";
    size_t pos = str.find("World");
    if (pos != std::string::npos) {
        std::cout << "Found 'World' at position: " << pos << std::endl;
    } else {
        std::cout << "The substring 'World' was not found." << std::endl;
    }
    return 0;
}

在这个示例中, find 被用来查找子字符串 "World" 在字符串 str 中的位置。如果找到了, pos 将包含子字符串的起始索引;如果没有找到, pos 将被设置为 std::string::npos 。

1.查找字符

cpp 复制代码
size_t pos = str.find('o');

这个调用查找字符 'o' 在字符串中的位置。

2.查找子字符串

cpp 复制代码
size_t pos = str.find("World");

这个调用查找子字符串 "World" 在字符串中的位置。

3.查找子字符串(从指定位置开始)

cpp 复制代码
size_t pos = str.find("World", 6);

这个调用从索引 6 开始查找子字符串 "World" 。

4.查找字符范围

cpp 复制代码
size_t pos = str.find_first_of("lo");

这个调用查找任何 "lo" 中的字符在字符串中第一次出现的位置。还有 find_last_of 来查找最后一次出现的位置。

5.查找不包含特定字符的范围

cpp 复制代码
size_t pos = str.find_first_not_of("Hdle");

这个调用查找第一个不是 "Hdle" 中的字符的位置。 find_last_not_of 用于查找最后一次出现的位置。

二.使用string::npos返回无效位置

string::npos 是 C++ 标准库中 std::string 类型的一个静态成员常量,表示"未找到"或"无效位置"。当你使用 std::string 的某些方法,如 find 、 rfind 、 find_first_of 等,它们返回一个位置索引时,如果没有找到指定的子字符串或字符,这些方法就会返回 string::npos 。

例如:

cpp 复制代码
std::string str = "Hello, World!";
size_t pos = str.find("test");

if (pos == std::string::npos) {
    // 没有找到子字符串 "test"
}

在这个例子中,如果 str 中没有 "test" 这个子字符串, pos 将被赋值为 string::npos 。

它的值是 std::string 类型能够表示的最大大小加一(通常是 size_t(-1) )。

三.总结

find 函数是 std::string 类中非常有用的成员函数之一,它提供了灵活的方式来查找子字符串或字符。使用 npos 可以检查查找操作是否成功。

相关推荐
菜就多练,以前是以前,现在是现在1 小时前
Codeforces Round 1042 (Div. 3)
c++·算法
学习编程的gas2 小时前
C++多态:理解面向对象的“一个接口,多种实现”
开发语言·c++
FirstFrost --sy2 小时前
C++ stack and queue
开发语言·c++·queue·stack·priority_queue
daiyanyun3 小时前
Ubuntu 20.04 虚拟机安装完整教程:从 VMware 到 VMware Tools
linux·c语言·c++·ubuntu
GalaxyPokemon3 小时前
Linux的pthread怎么实现的?(包括到汇编层的实现)
运维·开发语言·c++
菜鸟555554 小时前
河南萌新联赛2025第五场 - 信息工程大学
c++·算法·思维·河南萌新联赛
·Alone4 小时前
C++ list模拟实现
开发语言·c++
科大饭桶5 小时前
Linux系统编程Day13 -- 程序地址空间(进阶)
linux·运维·c语言·数据结构·c++
草莓熊Lotso5 小时前
《吃透 C++ 类和对象(中):构造函数与析构函数的核心逻辑》
c++·经验分享·笔记·程序人生·其他
十五年专注C++开发6 小时前
通信中间件 Fast DDS(一) :编译、安装和测试
linux·c++·windows·中间件·cmake·vcpkg