如何使用std :: regex_replace将字符串替换成小写?

时间:2018-11-02 04:37:56

标签: c++ regex std

我发现此正则表达式可以替换Regex replace uppercase with lowercase letters

Find: (\w) Replace With: \L$1 

我的代码

string s = "ABC";
cout << std::regex_replace(s, std::regex("(\\w)"), "\\L$1") << endl;

在Visual Studio 2017中运行。

输出:

\LA\LB\LC

如何在C ++中编写小写的功能标记?

1 个答案:

答案 0 :(得分:0)

由于没有像\L这样的魔术,我们必须采取一种折衷的方法-使用regex_search并手动将鞋面的鞋面隐蔽起来。

template<typename ChrT>
void RegexReplaceToLower(std::basic_string<ChrT>& s, const std::basic_regex<ChrT>& reg)
{
    using string = std::basic_string<ChrT>;
    using const_string_it = string::const_iterator;
    std::match_results<const_string_it> m;
    std::basic_stringstream<ChrT> ss;

    for (const_string_it searchBegin=s.begin(); std::regex_search(searchBegin, s.cend(), m, reg);)
    {
        for (int i = 0; i < m.length(); i++)
        {
            s[m.position() + i] += ('a' - 'A');
        }
        searchBegin += m.position() + m.length();
    }
}

void _replaceToLowerTest()
{
    string sOut = "I will NOT leave the U.S.";
    RegexReplaceToLower(sOut, regex("[A-Z]{2,}"));

    cout << sOut << endl;

}