std::basic_string<CharT,Traits,Allocator>::contains

来自cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
修改器
搜索
操作
basic_string::contains
(C++23)
常量
非成员函数
I/O
比较
(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推导指引 (C++17)

 
constexpr bool
    contains( std::basic_string_view<CharT,Traits> sv ) const noexcept;
(1) (C++23 起)
constexpr bool
    contains( CharT ch ) const noexcept;
(2) (C++23 起)
constexpr bool
    contains( const CharT* s ) const;
(3) (C++23 起)

检查字符串是否含有给定子串。子串可以是下列三种之一:

1) 字符串视图 sv(可能为从另一 std::basic_string 隐式转换的结果)。
2) 单个字符 c
3) 空终止字符串 s

所有三个重载都等价于 return find(x) != npos;,其中 x 为形参。

参数

sv - 字符串视图,可能为从另一 std::basic_string 隐式转换的结果
c - 单个字符
s - 空终止字符串

返回值

若字符串含有给定子串则为 true,否则为 false

注解

功能特性测试 标准 功能特性
__cpp_lib_string_contains 202011L (C++23) contains 函数

示例

#include <iomanip>
#include <iostream>
#include <string>
#include <string_view>
#include <type_traits>
 
template<typename SubstrType>
void test_substring(const std::string& str, SubstrType subs)
{
    constexpr char delim = std::is_scalar_v<SubstrType> ? '\'' : '\"';
    std::cout << std::quoted(str)
              << (str.contains(subs) ? " 包含 "
                                     : " 不包含 ")
              << std::quoted(std::string{subs}, delim) << '\n';
}
 
int main()
{
    using namespace std::literals;
 
    auto helloWorld = "hello world"s;
 
    test_substring(helloWorld, "hello"sv);
    test_substring(helloWorld, "goodbye"sv);
    test_substring(helloWorld, 'w');
    test_substring(helloWorld, 'x');
}

输出:

'hello world' 包含 "hello"
'hello world' 不包含 "goodbye"
'hello world' 包含 'w'
'hello world' 不包含 'x'

参阅

检查字符串是否始于给定前缀
(公开成员函数)
(C++20)
检查字符串是否终于给定后缀
(公开成员函数)
寻找给定子串的首次出现
(公开成员函数)
返回子串
(公开成员函数)
(C++23)
检查字符串视图是否含有给定的子串或字符
(std::basic_string_view<CharT,Traits> 的公开成员函数)