std::string从C++20支持的新Operations

https://en.cppreference.com/w/cpp/string/basic_string

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

void test_01()
{
    int val = std::stoi("101");
    std::cout << std::format("{}\n", val);  // 101

    std::string str("Hello C++20!");
    if(str.ends_with("C++20!")){
        std::cout << std::format("{} ends with \"{}\"\n",str, "C++20!");  // Hello C++20! ends with "C++20!"
    }
    if(str.starts_with("Hello")){
        std::cout << std::format("{} starts with \"{}\"\n",str, "Hello");  // Hello C++20! ends with "C++20!"
    }
    if(str.contains("C++23")){
        std::cout << std::format("{} contains \"{}\"\n",str, "C++23");
    }
    else {
        // std::basic_string<CharT,Traits,Allocator>::contains is supported from "C++23".
        std::cout << std::format("std::basic_string<CharT,Traits,Allocator>::contains is supported from \"{}\".\n", "C++23");
    }
}
 
int main()
{
    test_01();
}
相关推荐
oioihoii12 小时前
C++20 的新工具:std::midpoint 和 std::lerp
c++20
郭涤生2 天前
Chapter 1: Historical Context_《C++20Get the details》_notes
开发语言·c++20
郭涤生3 天前
Chapter 5: The Standard Library (C++20)_《C++20Get the details》_notes
开发语言·c++·笔记·c++20
oioihoii6 天前
深入解析 C++20 中的 std::bind_front:高效函数绑定与参数前置
java·算法·c++20
oioihoii6 天前
C++20:make_shared_for_overwrite与make_unique_for_overwrite
jvm·算法·c++20
oioihoii8 天前
C++20 中的std::c8rtomb和 std::mbrtoc8
前端·c++20
不会写代码的工科狗9 天前
C++17和C++20引入的新特性
c++·算法·c++20
oioihoii9 天前
C++20 中 `constexpr` 的强大扩展:算法、工具与复数库的变革
算法·c++20
oioihoii12 天前
C++20:玩转 string 的 starts_with 和 ends_with
算法·c++20
oioihoii13 天前
C++20 新特性:深入理解 `std::basic_string<char8_t>` 和 `char8_t`
java·前端·c++20