我想在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的返回值分配给迭代器,以获取新的有效迭代器,但是返回值似乎不兼容。
如何在这里获得有效的迭代器,还是必须使用索引而不是迭代器?
答案 0 :(得分:1)
您可以在替换后重新计算迭代器,例如
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);