我正在使用boost xpressive regex_replace。替换后,我在字符串末尾得到了垃圾字符
std::wstring wEsc(L"fxSSyrpng");
std::wstring wReplaceByText(L"tiff");
std::wstring searchText(L"fx");
wsregex regExp;
try
{
regExp = wsregex::compile( searchText );
}
catch ( regex_error &/*error*/ )
{
throw ;
}
catch (...)
{
throw ;
}
std::wstring strOut;
strOut.reserve( wEsc.length() + wReplaceByText.length() );
std::wstring::iterator it = strOut.begin();
boost::xpressive::regex_replace( it, wEsc.begin() , wEsc.end(), regExp,
wReplaceByText, regex_constants::match_not_null );
答案 0 :(得分:0)
在reserve
之后,字符串strOut
仍然有0个元素。因此strOut.begin() == strOut.end()
是正确的,而it
则指向无。如果要使用输出迭代器在regex_replace
中写入数据,it
必须指向具有足够空间来存储所有数据的内存。您可以通过调用resize
而不是reserve
来解决此问题。
另一种解决方案是使用back_inserter
来完成这项工作(此迭代器上的operator=
将数据推送到string
中),那么就不需要it
了,代码看起来像:
std::wstring strOut;
boost::xpressive::regex_replace( std::back_inserter(strOut), wEsc.begin() , wEsc.end(), regExp,
wReplaceByText, boost::xpressive::regex_constants::match_not_null );