Substitua a substring por outra substring C ++

90

Como eu poderia substituir uma substring em uma string por outra substring em C ++, quais funções eu poderia usar?

eg: string test = "abc def abc def";
test.replace("abc", "hij").replace("def", "klm"); //replace occurrence of abc and def with other substring
Steveng
fonte
5
Praticamente uma duplicata de stackoverflow.com/questions/3418231/… que tem uma solução mais robusta na resposta aceita.
dave-holm

Respostas:

74

Não existe uma função incorporada em C ++ para fazer isso. Se desejar substituir todas as ocorrências de uma substring por outra, você pode fazer isso misturando chamadas para string::finde string::replace. Por exemplo:

size_t index = 0;
while (true) {
     /* Locate the substring to replace. */
     index = str.find("abc", index);
     if (index == std::string::npos) break;

     /* Make the replacement. */
     str.replace(index, 3, "def");

     /* Advance index forward so the next iteration doesn't pick it up as well. */
     index += 3;
}

Na última linha deste código, aumentei indexo comprimento da string que foi inserida na string. Neste exemplo específico - substituir "abc"por "def"- isso não é realmente necessário. No entanto, em uma configuração mais geral, é importante pular a string que acabou de ser substituída. Por exemplo, se você deseja substituir "abc"por "abcabc", sem pular o segmento de string recém-substituído, esse código substituirá continuamente partes das strings recém-substituídas até que a memória se esgote. Independentemente, pode ser um pouco mais rápido pular esses novos personagens de qualquer maneira, já que isso economiza algum tempo e esforço da string::findfunção.

Espero que isto ajude!

templatetypedef
fonte
6
Não acredito que você precise incrementar o índice porque você já substituiu os dados, então ele não iria pegá-los de qualquer maneira.
rossb83
1
@Aidiakapi Se isso for transformado em uma função de propósito geral, não ficará preso em um loop infinito porque avança a posição de pesquisa ( index) além da parte da string que foi substituída.
Tim R.
1
@TimR. Você está certo, eu estava respondendo a rossb83 que afirma que o incremento do índice é desnecessário. Estava apenas tentando evitar desinformação. Portanto, para todos os demais: Aumentar o índice pelo comprimento da string substituída (neste caso 3) é necessário . Não o remova da amostra de código.
Aidiakapi
@FrozenKiwi Estou surpreso em ouvir isso. Tem certeza que é esse o caso?
templatetypedef
1
@JulianCienfuegos Acabei de atualizar a resposta para resolver isso - obrigado por apontar isso! (Além disso, Aidiakapi é outra pessoa ... não tenho certeza de quem é.)
templatetypedef
68

Forma de biblioteca de algoritmos de string de impulso :

#include <boost/algorithm/string/replace.hpp>

{ // 1. 
  string test = "abc def abc def";
  boost::replace_all(test, "abc", "hij");
  boost::replace_all(test, "def", "klm");
}


{ // 2.
  string test = boost::replace_all_copy
  (  boost::replace_all_copy<string>("abc def abc def", "abc", "hij")
  ,  "def"
  ,  "klm"
  );
}
Oleg Svechkarenko
fonte
4
Jay. Preciso de impulso para substituir todas as substrings.
Johannes Overmann
2
Boost é principalmente um exagero.
Konrad
62

No , você pode usar std::regex_replace:

#include <string>
#include <regex>

std::string test = "abc def abc def";
test = std::regex_replace(test, std::regex("def"), "klm");
Jingguo Yao
fonte
4
Isso seria ótimo se tivéssemos c ++ 11 !!
Michele
1
#include <regex>
Stepan Yakovenko
42

Eu acho que todas as soluções falharão se o comprimento da corda de substituição for diferente do comprimento da corda a ser substituída. (procure por "abc" e substitua por "xxxxxx") Uma abordagem geral pode ser:

void replaceAll( string &s, const string &search, const string &replace ) {
    for( size_t pos = 0; ; pos += replace.length() ) {
        // Locate the substring to replace
        pos = s.find( search, pos );
        if( pos == string::npos ) break;
        // Replace by erasing and inserting
        s.erase( pos, search.length() );
        s.insert( pos, replace );
    }
}
rotmax
fonte
40
str.replace(str.find(str2),str2.length(),str3);

Onde

  • str é a corda base
  • str2 é a string secundária para encontrar
  • str3 é a substring de substituição
Jeff Zacher
fonte
3
Isso apenas substitui a primeira ocorrência, não é?
jpo38 de
4
Eu sugeriria garantir que o resultado de str.find (str2) não seja igual a std :: string :: npos auto found = str.find (str2); if (found! = std :: string :: npos) str.replace (found, str2.length (), str3);
Geoff Lentsch
1
Eu não pretendia escrever o aplicativo inteiro com isso, mas sem qualquer verificação na entrada, há casos disso que são indefinidos ....
Jeff Zacher
19

Substituir substrings não deve ser tão difícil.

std::string ReplaceString(std::string subject, const std::string& search,
                          const std::string& replace) {
    size_t pos = 0;
    while((pos = subject.find(search, pos)) != std::string::npos) {
         subject.replace(pos, search.length(), replace);
         pos += replace.length();
    }
    return subject;
}

Se você precisa de desempenho, aqui está uma função otimizada que modifica a string de entrada, mas não cria uma cópia da string:

void ReplaceStringInPlace(std::string& subject, const std::string& search,
                          const std::string& replace) {
    size_t pos = 0;
    while((pos = subject.find(search, pos)) != std::string::npos) {
         subject.replace(pos, search.length(), replace);
         pos += replace.length();
    }
}

Testes:

std::string input = "abc abc def";
std::cout << "Input string: " << input << std::endl;

std::cout << "ReplaceString() return value: " 
          << ReplaceString(input, "bc", "!!") << std::endl;
std::cout << "ReplaceString() input string not changed: " 
          << input << std::endl;

ReplaceStringInPlace(input, "bc", "??");
std::cout << "ReplaceStringInPlace() input string modified: " 
          << input << std::endl;

Resultado:

Input string: abc abc def
ReplaceString() return value: a!! a!! def
ReplaceString() input string not modified: abc abc def
ReplaceStringInPlace() input string modified: a?? a?? def
Czarek Tomczak
fonte
precisa adicionar verificação if (search.empty()) { return; }para evitar loop infinito ao passar 'pesquisa' vazia
Programador iOS
Função ReplaceString tentada - não funcionou. Mas responda abaixo: str.replace (str.find (str2), str2.length (), str3); apenas simples e funciona bem.
KAMIKAZE
5
using std::string;

string string_replace( string src, string const& target, string const& repl)
{
    // handle error situations/trivial cases

    if (target.length() == 0) {
        // searching for a match to the empty string will result in 
        //  an infinite loop
        //  it might make sense to throw an exception for this case
        return src;
    }

    if (src.length() == 0) {
        return src;  // nothing to match against
    }

    size_t idx = 0;

    for (;;) {
        idx = src.find( target, idx);
        if (idx == string::npos)  break;

        src.replace( idx, target.length(), repl);
        idx += repl.length();
    }

    return src;
}

Como não é membro da stringclasse, não permite uma sintaxe tão boa quanto no seu exemplo, mas o seguinte fará o equivalente:

test = string_replace( string_replace( test, "abc", "hij"), "def", "klm")
Michael Burr
fonte
2

Generalizando a resposta do rotmax, aqui está uma solução completa para pesquisar e substituir todas as instâncias em uma string. Se ambas as substrings forem de tamanhos diferentes, a substring é substituída usando string :: erase e string :: insert., Caso contrário, a string mais rápida :: substituir é usada.

void FindReplace(string& line, string& oldString, string& newString) {
  const size_t oldSize = oldString.length();

  // do nothing if line is shorter than the string to find
  if( oldSize > line.length() ) return;

  const size_t newSize = newString.length();
  for( size_t pos = 0; ; pos += newSize ) {
    // Locate the substring to replace
    pos = line.find( oldString, pos );
    if( pos == string::npos ) return;
    if( oldSize == newSize ) {
      // if they're same size, use std::string::replace
      line.replace( pos, oldSize, newString );
    } else {
      // if not same size, replace by erasing and inserting
      line.erase( pos, oldSize );
      line.insert( pos, newString );
    }
  }
}
Neoh
fonte
2

Se você tiver certeza de que a substring necessária está presente na string, isso substituirá a primeira ocorrência de "abc"a"hij"

test.replace( test.find("abc"), 3, "hij");

Ele irá travar se você não tiver "abc" no teste, então use-o com cuidado.

ch0kee
fonte
1

Aqui está uma solução que escrevi usando a tática do construtor:

#include <string>
#include <sstream>

using std::string;
using std::stringstream;

string stringReplace (const string& source,
                      const string& toReplace,
                      const string& replaceWith)
{
  size_t pos = 0;
  size_t cursor = 0;
  int repLen = toReplace.length();
  stringstream builder;

  do
  {
    pos = source.find(toReplace, cursor);

    if (string::npos != pos)
    {
        //copy up to the match, then append the replacement
        builder << source.substr(cursor, pos - cursor);
        builder << replaceWith;

        // skip past the match 
        cursor = pos + repLen;
    }
  } 
  while (string::npos != pos);

  //copy the remainder
  builder << source.substr(cursor);

  return (builder.str());
}

Testes:

void addTestResult (const string&& testId, bool pass)
{
  ...
}

void testStringReplace()
{
    string source = "123456789012345678901234567890";
    string toReplace = "567";
    string replaceWith = "abcd";
    string result = stringReplace (source, toReplace, replaceWith);
    string expected = "1234abcd8901234abcd8901234abcd890";

    bool pass = (0 == result.compare(expected));
    addTestResult("567", pass);


    source = "123456789012345678901234567890";
    toReplace = "123";
    replaceWith = "-";
    result = stringReplace(source, toReplace, replaceWith);
    expected = "-4567890-4567890-4567890";

    pass = (0 == result.compare(expected));
    addTestResult("start", pass);


    source = "123456789012345678901234567890";
    toReplace = "0";
    replaceWith = "";
    result = stringReplace(source, toReplace, replaceWith);
    expected = "123456789123456789123456789"; 

    pass = (0 == result.compare(expected));
    addTestResult("end", pass);


    source = "123123456789012345678901234567890";
    toReplace = "123";
    replaceWith = "-";
    result = stringReplace(source, toReplace, replaceWith);
    expected = "--4567890-4567890-4567890";

    pass = (0 == result.compare(expected));
    addTestResult("concat", pass);


    source = "1232323323123456789012345678901234567890";
    toReplace = "323";
    replaceWith = "-";
    result = stringReplace(source, toReplace, replaceWith);
    expected = "12-23-123456789012345678901234567890";

    pass = (0 == result.compare(expected));
    addTestResult("interleaved", pass);



    source = "1232323323123456789012345678901234567890";
    toReplace = "===";
    replaceWith = "-";
    result = utils_stringReplace(source, toReplace, replaceWith);
    expected = source;

    pass = (0 == result.compare(expected));
    addTestResult("no match", pass);

}
Den-Jason
fonte
0
    string & replace(string & subj, string old, string neu)
    {
        size_t uiui = subj.find(old);
        if (uiui != string::npos)
        {
           subj.erase(uiui, old.size());
           subj.insert(uiui, neu);
        }
        return subj;
    }

Acho que isso se encaixa nas suas necessidades com poucos códigos!

Alessio
fonte
Você não está levando em consideração várias ocorrências / substituições
Elias Bachaalany
0

a versão aprimorada por @Czarek Tomczak.
permitir tanto std::stringe std::wstring.

template <typename charType>
void ReplaceSubstring(std::basic_string<charType>& subject,
    const std::basic_string<charType>& search,
    const std::basic_string<charType>& replace)
{
    if (search.empty()) { return; }
    typename std::basic_string<charType>::size_type pos = 0;
    while((pos = subject.find(search, pos)) != std::basic_string<charType>::npos) {
         subject.replace(pos, search.length(), replace);
         pos += replace.length();
    }
}
programador iOS
fonte
0
std::string replace(const std::string & in
                  , const std::string & from
                  , const std::string & to){
  if(from.size() == 0 ) return in;
  std::string out = "";
  std::string tmp = "";
  for(int i = 0, ii = -1; i < in.size(); ++i) {
    // change ii
    if     ( ii <  0 &&  from[0] == in[i] )  {
      ii  = 0;
      tmp = from[0]; 
    } else if( ii >= 0 && ii < from.size()-1 )  {
      ii ++ ;
      tmp = tmp + in[i];
      if(from[ii] == in[i]) {
      } else {
        out = out + tmp;
        tmp = "";
        ii = -1;
      }
    } else {
      out = out + in[i];
    }
    if( tmp == from ) {
      out = out + to;
      tmp = "";
      ii = -1;
    }
  }
  return out;
};
Krecker
fonte
0

Aqui está uma solução usando recursão que substitui todas as ocorrências de uma substring por outra substring. Isso funciona independentemente do tamanho das cordas.

std::string ReplaceString(const std::string source_string, const std::string old_substring, const std::string new_substring)
{
    // Can't replace nothing.
    if (old_substring.empty())
        return source_string;

    // Find the first occurrence of the substring we want to replace.
    size_t substring_position = source_string.find(old_substring);

    // If not found, there is nothing to replace.
    if (substring_position == std::string::npos)
        return source_string;

    // Return the part of the source string until the first occurance of the old substring + the new replacement substring + the result of the same function on the remainder.
    return source_string.substr(0,substring_position) + new_substring + ReplaceString(source_string.substr(substring_position + old_substring.length(),source_string.length() - (substring_position + old_substring.length())), old_substring, new_substring);
}

Exemplo de uso:

std::string my_cpp_string = "This string is unmodified. You heard me right, it's unmodified.";
std::cout << "The original C++ string is:\n" << my_cpp_string << std::endl;
my_cpp_string = ReplaceString(my_cpp_string, "unmodified", "modified");
std::cout << "The final C++ string is:\n" << my_cpp_string << std::endl;
brotalnia
fonte
0
std::string replace(std::string str, std::string substr1, std::string substr2)
{
    for (size_t index = str.find(substr1, 0); index != std::string::npos && substr1.length(); index = str.find(substr1, index + substr2.length() ) )
        str.replace(index, substr1.length(), substr2);
    return str;
}

Solução curta onde você não precisa de nenhuma biblioteca extra.

Altinsystems
fonte
Existem 14 outras respostas para esta pergunta. Por que não oferecer uma explicação de por que o seu é melhor?
chb
0
std::string replace(std::string str, const std::string& sub1, const std::string& sub2)
{
    if (sub1.empty())
        return str;

    std::size_t pos;
    while ((pos = str.find(sub1)) != std::string::npos)
        str.replace(pos, sub1.size(), sub2);

    return str;
}
Alex
fonte