C++: 参数解析

C++中我们有时候需要对含有空白符的字符串进行参数解析(Tokenize), 将字符串分解为若干个不含空格的字符串(token).下面介绍两种C++ 中参数解析的方法.

使用 stringstream

使用输入流对象(istream)的输入运算符>>输入含空格的字符串时, 字符串变量只能获取到空格前的部分. 利用该特性, 我们可以用来实现参数解析. 代码如下:

std::vector<std::string> parse1(const std::string &line)
{
    std::stringstream ss(line);
    std::vector<std::string> args;
    while(!ss.eof())
    {
        std::string arg;
        ss >> arg;
        args.push_back(arg);
    }
    return args;
}

使用 string::find_first_(not_)of

使用 string::find_first_of()函数 和 string::find_first_not_of()函数同样可以实现参数解析. string::find_first_not_of() 用于查找非空白符所在位置, string::find_first_of()用于查找空白符所在位置, 使用string::substr() 提取子字符串. 代码如下:

std::vector<std::string> parse2(const std::string &line)
{
    std::vector<std::string> args;
    const char* delim = " \t";
    size_t sp = 0;
    size_t ep = 0;
    while (ep != std::string::npos)
    {
        sp = line.find_first_not_of(delim, ep);
        ep = line.find_first_of(delim, sp);
        args.push_back(line.substr(sp, ep-sp));
    }
    return args;
}

示例代码

示例代码如下:

// main.cpp

#include <iostream>
#include <sstream>
#include <vector>

std::vector<std::string> parse1(const std::string &line)
{
    std::stringstream ss(line);
    std::vector<std::string> args;
    while(!ss.eof())
    {
        std::string arg;
        ss >> arg;
        args.push_back(arg);
    }
    return args;
}

std::vector<std::string> parse2(const std::string &line)
{
    std::vector<std::string> args;
    const char* delim = " \t";
    size_t sp = 0;
    size_t ep = 0;
    while (ep != std::string::npos)
    {
        sp = line.find_first_not_of(delim, ep);
        ep = line.find_first_of(delim, sp);
        args.push_back(line.substr(sp, ep-sp));
    }
    return args;
}

int main(int, char**) {
    std::cout << ">";
    std::string line;
    std::getline(std::cin, line);
    std::vector<std::string> args = parse2(line);
    std::cout << "parse 1:" << std::endl;
    for (auto &&arg : args)
    {
        std::cout << "\t" << arg << std::endl;
    }
    std::vector<std::string> args2 = parse2(line);
    std::cout << "parse 2:" << std::endl;
    for (auto &&arg : args2)
    {
        std::cout << "\t" << arg << std::endl;
    }
    return 0;
}

以下是测试结果:

在这里插入图片描述

如果你有更好的方法, 欢迎评论区留言分享.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

falwat

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

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

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

打赏作者

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

抵扣说明:

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

余额充值