如何在字符串 C++ 中用 "aaa" 替换字符 'a'?

How to replace the character 'a' with "aaa" in a string C++?

我必须用字符串中的“aaa”替换所有 'a' 个字符。
所以,我想做什么。如果输入是 water,输出必须是这样的:waaater
我试过这个:

#include <iostream>
#include <string.h>

using namespace std;

int main ()
{
  char s[100], t[100];
  int i;
  cout << "The string is: " << endl;
  cin.get (s, 100);
  strcpy (t, s);
  for (i = 0; i < strlen (s); i++)
    if (s[i] == 'a')
      strcat (strcpy (s + i, "aa"), t + i);
  cout << "The modified string  is: " << endl;
  cout << s;
}

但输出是 Segmentation fault (core dumped).
我不知道出了什么问题,也不知道要更改什么地方。

一个简单的正则表达式就可以做到。

#include <iostream>
#include <regex>
#include <string>

int main() {
 std::string text = "water";
 std::regex replace("a");

 std::cout << std::regex_replace(text, replace, "aaa") << std::endl;

 return 0;
}

它会根据需要用“waaater”替换“water”。

假设 old_string = "water"。 它的长度是5。 它有 1 'a'。 因此,new_string 的长度应为 new_length = old_length + (2 * number_of_a)。在我们的例子中,7。 声明一个大小为 new_length + 1(+1 为空字符)的字符数组。

char new_string[8];

将变量 j 设置为 0。 现在 运行 从 0 到 7 的 while 循环,其中 i 是循环变量。 在循环内部,首先检查 i 是否等于 7。 如果是,设置 new_string[i] = '[=13=]'; 否则,设置 new_string[i] = old_string[j]; 在同一个 ELSE 块中,现在检查是否 old_string[j] == 'a' 如果是,则递增 i 并设置 new_string[i] = old_string[j]; 再执行一次上一行。 现在,在 ELSE 块之外,递增 j,递增 i。

您正在尝试就地修改 s,但是在每次将 'a' 替换为 "aaa" 之后,您并没有跳过新的 a,您只是插入,所以你最终也替换了它们,即 water -> waaater -> waaaaater -> waaaaaaater,以此类推,直到出现错误.

试试这个:

#include <iostream>
#include <string.h>

using namespace std;

int main ()
{
    char s[100], t[100];
    int i, j;

    cout << "The string is: " << endl;
    cin.get (s, 100);

    strcpy (t, s);
    for (i = 0, j = 0; i < strlen (s); i++, j++) {
        if (s[i] == 'a') {
            strcat (strcpy (s + i, "aa"), t + j);
            i += 2;
        }
    }

    cout << "The modified string is: " << endl;
    cout << s;
}

Demo

或者:

#include <iostream>
#include <string.h>

using namespace std;

int main ()
{
    char s[100];

    cout << "The string is: " << endl;
    cin.get(s, 100);

    int len = strlen(s);
    for (int i = 0; i < len; i++) {
        if (s[i] == 'a') {
            if ((len+3) > sizeof(s)) break; // no more space!
            memmove(s+(i+3), s+(i+1), sizeof(s)-(i+1));
            s[i+1] = 'a'; s[i+2] = 'a';
            i += 2;
            len += 2;
        }
    }

    cout << "The modified string is: " << endl;
    cout << s;
}

Demo

但是,如果您使用std::string instead of char[], you can then use the std::string::find() and std::string::replace()方法,例如:

#include <iostream>
#include <string>

using namespace std;

int main ()
{
    string s;

    cout << "The string is: " << endl;
    cin >> s;

    string::size_type pos = 0;
    do {
        pos = s.find('a', pos);
        if (pos == string::npos) break;
        s.replace(pos, 1, "aaa");
        pos += 3;
    }
    while (true);

    cout << "The modified string is: " << endl;
    cout << s;
}

Demo

或者,使用 std::string::insert(),例如:

#include <iostream>
#include <string>

using namespace std;

int main ()
{
    string s;

    cout << "The string is: " << endl;
    cin >> s;

    string::size_type pos = 0;
    do {
        pos = s.find('a', pos);
        if (pos == string::npos) break;
        s.insert(pos, "aa");
        // or: s.insert(pos, 2, 'a');
        pos += 3;
    }
    while (true);

    cout << "The modified string is: " << endl;
    cout << s;
}

Demo