C++20: 像Python一样split字符串

概要

Python 的字符串天生支持 split( ) 操作,支持单个字符或字符串作为分隔符。 C++ 在这方面显得很笨拙,但是在 C++20 下经过一番尝试,还是能够提供类似的简洁调用。

Python 代码

python 复制代码
s = '0,11,336,23,370'

nums = s.split(',')
for n in nums:
    print(n)

print('---')

items = s.split('11,')
for i in items:
    print(i)

基于 C++20 的实现

  • 使用了 std::string_view, 避免了原始字符串的拷贝
  • 使用了组合,而不是继承的方式,把 split( ) 函数,与原始的字符串 str 进行组合,也就是分别作为 MyString 类的成员函数和数据成员
cpp 复制代码
class MyString {
private:
    std::string data;

public:
    MyString(const std::string& str) : data(str) {}
    MyString(std::string&& str) : data(std::move(str)) {}
    MyString(const char* str) : data(str) {}

    // 提供 split 方法
    std::vector<std::string> split(const std::string& delimiter) const {
        std::vector<std::string> result;
        size_t start = 0;
        size_t end = 0;

        while ((end = data.find(delimiter, start)) != std::string::npos) {
            result.emplace_back(data.substr(start, end - start));
            start = end + delimiter.length();
        }
        result.emplace_back(data.substr(start)); // 添加最后一部分
        return result;
    }

    // 提供 std::string 的接口
    const std::string& str() const { return data; }
    operator const std::string&() const { return data; } // 隐式转换为 std::string
};

调用代码 - C++

cpp 复制代码
int main() {
    MyString s("0,11,336,23,370");

    // 按 ',' 分割
    auto nums = s.split(",");
    for (const auto& n : nums) {
        std::cout << n << '\n';
    }

    std::cout << "---\n";

    // 按 "11," 分割
    auto items = s.split("11,");
    for (const auto& i : items) {
        std::cout << i << '\n';
    }

    return 0;
}

总结

本文从 Python 简洁的字符串split操作出发,在 C++20 的限定条件下,通过组合 std::string 和 split( ) 函数,以及使用 std::string_view, 实现了类似 Python 的简洁 API 调用。

相关推荐
sun_weitao2 小时前
Django自带admin管理系统使用
数据库·python·django
RuiyChen2 小时前
当comfyui-reactor-node 安装失败urllib.error.HTTPError: HTTP Error 403: Forbidden解决方法
图像处理·python
Jamesvalley3 小时前
【Debug】django.db.utils.OperationalError: (1040, ‘Too many connections‘)
数据库·python·django
Q_27437851093 小时前
django基于Python的智能停车管理系统
java·数据库·python·django
太阳花的小绿豆4 小时前
Python使用socket实现简易的http服务
python·socket
不是AI4 小时前
【C语言】【C++】Curl库的安装
c语言·开发语言·c++
视觉弘毅4 小时前
win10安装anaconda环境与opencv
python·opencv·anaconda
计算机小混子4 小时前
C++实现设计模式---模板方法模式 (Template Method)
c++·设计模式·模板方法模式
@菜鸟先飞5 小时前
【零基础租赁实惠GPU推荐及大语言模型部署教程01】
python·语言模型·gpu算力
蒲公英的孩子5 小时前
DCU异构程序--矩阵乘
linux·c++·分布式·矩阵·架构