join使用

// 在日常开发中,经常会碰到需要将多个字符串以某些相同的分隔字符串连接起来的情形
//      "select * from t where name in ('a', 'b', .. , 'z')"中的"', '"
//      "insert into t(name) values ('a'), ('b')"中的 "'), ('" 
//      <table> <tr><td>a</td><td>b</td></tr> <tr><td>a</td></tr> </table>中的 "</td><td>"
// ....
//
// 于是,我写一个模板join用来支持这一类开发需求
//
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
using namespace std;

template <class type_a, class type_b>
string& // 返回值string&方便下面的使用场景 ostream << join(...); string b = join(...);
join( const type_a &begin, const type_a &end,   // 方便iterator的使用
        const type_b &t,                        // 相同的分隔字符串
        string& result                          // 存放结果, 注意:不要用函数内的局部变量,函数返回引用时会出现错误
        ) 
{
    result.clear();                             // 为了后面测试方便加的,可根据需要选择去留
    for (type_a it=begin; it!=end; ++it)
    {
        if (!result.empty())
            result.append(t);
        result.append(*it);
    }
    return result;
}

int main(int argc, char** argv)
{
    vector<string> strs;
    strs.push_back("a");
    strs.push_back("b");
    strs.push_back("c");

    string result;

    join(strs.begin(), strs.end(), ",", result);
    cout << result << endl;

    join(strs.begin(), strs.end(), "\t", result);
    cout << result << endl;

    const string& sa = join(strs.begin(), strs.end(), "\n", result);
    cout << sa << endl;

    stringstream ss;
    ss << "select * from t_a where name in('"
        << join(strs.begin(), strs.end(), "','", result)
        << "')"
        << endl;

    cout << ss.str() << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值