C++ 通过换行符分割字符串

  1. static const size_t npos = -1; 用来标识不存在的位置
    npos是一个常数,表示size_t的最大值(Maximum value for size_t)。许多容器都提供这个东西,用来表示不存在的位置,类型一般是std::container_type::size_type
  2. find()寻找首个等于给定字符序列的子串。搜索始于 pos ,即找到的子串必须不始于pos 之前的位置。
#include <string.h>
#include <cstring>
#include <iostream>
#include <list>
#include <vector>

using namespace std;

void splitStr(std::string src, std::string pattern,
              std::vector<std::string> &sList) {
    int pos2 = 0;
    cout << "src       " << src << endl;
    for (int i = 0; i < src.size();) {
        pos2 = src.find('\n', i);
        cout << "pos2        " << pos2;
        if (pos2 != std::string::npos) {
            std::string strT = src.substr(i, pos2 - i);
            cout << "    strT        " << strT << endl;
            sList.push_back(strT);
            i = pos2 + 1;
            continue;

        } else {
            sList.push_back(src.substr(i, src.size() - 1));
        }
        break;
    }
}

int main() {
    string str = "\n10000\n20000";
    string pattern = "\n";
    std::vector<std::string> sList;
    splitStr(str, pattern, sList);
    cout << "\nsize        " << sList.size() << endl;
    for (int i = 0; i < sList.size(); i++) {
        cout << "content         " << sList.at(i) << endl;
    }
    return 0;
}

输出结果

src       
10000
20000
pos2        0    strT        
pos2        6    strT        10000
pos2        -1
size        3
content         
content         10000
content         20000
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

-西门吹雪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值