我正在尝试替换“;”在带有子字符串的字符串中,稍后我将在该字符串上拆分流。
现在的问题是string::replace()。这是代码:

std::string Lexer::replace(const std::string &line) const
{
  std::size_t   start_pos;
  std::string   tmp(line);

  start_pos = 0;
  while ((start_pos = tmp.find(";", start_pos)) != std::string::npos)
  {
    tmp.replace(start_pos, 1, " ");
    start_pos += 1;
  }
  return (tmp);
}
line字符串可能类似于:word1 word2 word3; word1 word2 word3;...
它适用于像word1 word2 word3;这样的字符串,但是这就是我得到的像word1 word2 word3; word1 word2 word3;这样的字符串的结果:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::replace
Aborted

我看不到我在做什么错。我读到,当string::replace(pos, len, substr)中的给定位置等于string::npos时,会发生此错误,那么为什么循环中的条件无助于避免这种情况呢?

谢谢你。

最佳答案

您似乎没有初始化start_pos,因此需要更改此行:

std::size_t   start_pos = 0;
//                     ^^^^

否则,您将获得不确定的行为,并带有一些可能代表起始位置的垃圾值。

另外,请注意,最好使用string::size_type,因为您在迭代时使用的是字符串大小。

这段代码适合我:

main.cpp
#include <string>
#include <iostream>

using namespace std;

string myreplace(const string &line)
{
    string::size_type   start_pos = 0;
    string   tmp(line);

    while ((start_pos = tmp.find(";", start_pos)) != string::npos)
    {
        tmp.replace(start_pos, 1, " ");
        start_pos += 1;
    }
    return tmp;
}

int main()
{
    string test_str1 = "word1 word2 word3;";
    string test_str2 = "word1 word2 word3; word1 word2 word3;";
    string test_str3 = "word1 word2 word3; word1 word2 word3;....";

    cout << myreplace(test_str1) << endl;
    cout << myreplace(test_str2) << endl;
    cout << myreplace(test_str3) << endl;

    return 0;
}

输出
word1 word2 word3
word1 word2 word3  word1 word2 word3
word1 word2 word3  word1 word2 word3 ....

==================================================

话虽如此,您应该考虑使用std的标准替换算法,如下所示:
#include <string>
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
    string test_str1 = "word1 word2 word3;";
    string test_str2 = "word1 word2 word3; word1 word2 word3;";
    string test_str3 = "word1 word2 word3; word1 word2 word3;....";

    string out_str1 = replace(test_str1.begin(), test_str1.end(), ';', ' ');
    string out_str2 = replace(test_str2.begin(), test_str2.end(), ';', ' ');
    string out_str3 = replace(test_str3.begin(), test_str3.end(), ';', ' ');

    cout << out_str1 << endl;
    cout << out_str2 << endl;
    cout << out_str3 << endl;
    return 0;
}

输出
word1 word2 word3
word1 word2 word3  word1 word2 word3
word1 word2 word3  word1 word2 word3 ....

08-07 03:52