模板char / wchar_t,string / wstring,cout / wcout,regexp / wregex(或任何可能的解决方法)

时间:2012-11-10 21:05:12

标签: c++ string templates wstring widestring

我正在处理charwchar_t

我正在编写一个辅助字符串类,它为某些字符串添加了一些正则表达式(带有boost),但我有stringwstring。现在我有2个函数,每个功能都有重复的代码。

int countFoo(const char *s, const char *foo) {
    string text(s);

    boost::regex e(foo);

    int count = 0;
    boost::smatch match;
    while ( boost::regex_search( text, match, e ) ) {
        text = match.suffix();    
        count++;
    }
    return count;
}
int countFoo(const wchar_t *s, const wchar_t *foo) {
    wstring text(s);

    boost::wregex e(foo);

    int count = 0;
    boost::wsmatch match;
    while ( boost::regex_search( text, match, e ) ) {
        text = match.suffix();    
        count++;
    }
    return count;
}

它有效,但我正在寻找一些优雅的方法(模板?一些oop magic?函数指针?)来删除重复的代码。

1 个答案:

答案 0 :(得分:2)

你可以把它写成这样的模板:

template <typename charT>
int countFoo(const charT *s, const charT *foo) {
    basic_string<char> text(s);

    boost::basic_regex<charT> e(foo);

    int count = 0;
    boost::match_results<typename basic_string<charT>::const_iterator> match;
    while ( boost::regex_search( text, match, e ) ) {
        text = match.suffix();    
        count++;
    }
    return count;
}