我想在Windows下使用迭代器在C ++中进行一些字符串替换。这是代码:
#include <stdio.h>
#include <iostream>
#include <string>
#include <iterator>
size_t iterator_to_size_t(std::string &string, std::string::iterator it)
{
size_t pos;
pos = std::distance(string.begin(), it);
return pos;
}
int main()
{
std::string text = "TTTTbcdefghijklmnopqrstuvwxyz";
std::string findtext = "TTTT";
std::string replacementtext = "123456";
for (std::string::iterator it = text.begin(); it!=text.end(); ++it)
{
size_t z = iterator_to_int(text, it);
if (text.compare(z, findtext.length(), findtext) == 0)
{
text.replace(z, findtext.length(), replacementtext);
}
}
return 0;
}
string :: replace方法显然使迭代器无效。我收到一条错误消息。我试图将string :: replace的返回值赋给迭代器,以获得一个新的有效迭代器,但返回值似乎不兼容。
我如何在这里获得有效的迭代器或者我必须使用索引而不是迭代器?
您可以在替换后重新计算迭代器,例如
if (text.compare(z, findtext.length(), findtext) == 0)
{
text.replace(z, findtext.length(), replacementtext);
it = text.begin() + z + replacementtext.size();
}
此外,拥有一个使用迭代器的循环,从那些迭代器计算位置索引并使用位置索引来获取迭代器是非常麻烦的。我建议你考虑以下几点。
#include <regex>
const std::regex re{"TTTT"};
text = std::regex_replace(text, re, replacementtext);