Existe uma maneira de substituir todas as ocorrências de uma substring por outra string em std::string
?
Por exemplo:
void SomeFunction(std::string& str)
{
str = str.replace("hello", "world"); //< I'm looking for something nice like this
}
Existe uma maneira de substituir todas as ocorrências de uma substring por outra string em std::string
?
Por exemplo:
void SomeFunction(std::string& str)
{
str = str.replace("hello", "world"); //< I'm looking for something nice like this
}
Respostas:
Por que não implementar seu próprio substituto?
void myReplace(std::string& str,
const std::string& oldStr,
const std::string& newStr)
{
std::string::size_type pos = 0u;
while((pos = str.find(oldStr, pos)) != std::string::npos){
str.replace(pos, oldStr.length(), newStr);
pos += newStr.length();
}
}
#include <boost/algorithm/string.hpp> // include Boost, a C++ library
...
std::string target("Would you like a foo of chocolate. Two foos of chocolate?");
boost::replace_all(target, "foo", "bar");
Aqui está a documentação oficial sobre replace_all.
replace_all
será o segfault para versões de boost> 1,43 no Sun Studio para qualquer versão <12.3
boost
aumenta o tempo de compilação consideravelmente em dispositivos embarcados. Mesmo quad core ARMv7. 100 linhas de código compiladas em 2 minutos, sem aumento, 2 segundos.
No C ++ 11, você pode fazer isso em uma linha com uma chamada para regex_replace
:
#include <string>
#include <regex>
using std::string;
string do_replace( string const & in, string const & from, string const & to )
{
return std::regex_replace( in, std::regex(from), to );
}
string test = "Remove all spaces";
std::cout << do_replace(test, " ", "") << std::endl;
resultado:
Removeallspaces
from
pode ser uma expressão regular - portanto, você pode usar critérios de correspondência mais sofisticados, se necessário. O que não vejo é como fazer isso sem aplicar alguma forma de análise de expressão regular - em vez de usar apenas uma interpretação direta dos from
caracteres.
Por que não retornar uma string modificada?
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
Meu modelo de localizar e substituir no local embutido:
template<class T>
int inline findAndReplace(T& source, const T& find, const T& replace)
{
int num=0;
typename T::size_t fLen = find.size();
typename T::size_t rLen = replace.size();
for (T::size_t pos=0; (pos=source.find(find, pos))!=T::npos; pos+=rLen)
{
num++;
source.replace(pos, fLen, replace);
}
return num;
}
Ele retorna uma contagem do número de itens substituídos (para uso se você deseja executá-lo sucessivamente, etc). Para usá-lo:
std::string str = "one two three";
int n = findAndReplace(str, "one", "1");
A maneira mais fácil (oferecendo algo próximo ao que você escreveu) é usar Boost.Regex , especificamente regex_replace .
std :: string incorporou os métodos find () e replace (), mas eles são mais complicados de trabalhar, pois exigem lidar com índices e comprimentos de string.
Eu acredito que isso funcionaria. Leva const char * 's como parâmetro.
//params find and replace cannot be NULL
void FindAndReplace( std::string& source, const char* find, const char* replace )
{
//ASSERT(find != NULL);
//ASSERT(replace != NULL);
size_t findLen = strlen(find);
size_t replaceLen = strlen(replace);
size_t pos = 0;
//search for the next occurrence of find within source
while ((pos = source.find(find, pos)) != std::string::npos)
{
//replace the found string with the replacement
source.replace( pos, findLen, replace );
//the next line keeps you from searching your replace string,
//so your could replace "hello" with "hello world"
//and not have it blow chunks.
pos += replaceLen;
}
}
size_type
para uma string é unsigned
, sua >=
verificação na condição de loop sempre será true
. Você tem que usar std::string::npos
lá.
roll_down_window
// Replace all occurrences of searchStr in str with replacer
// Each match is replaced only once to prevent an infinite loop
// The algorithm iterates once over the input and only concatenates
// to the output, so it should be reasonably efficient
std::string replace(const std::string& str, const std::string& searchStr,
const std::string& replacer)
{
// Prevent an infinite loop if the input is empty
if (searchStr == "") {
return str;
}
std::string result = "";
size_t pos = 0;
size_t pos2 = str.find(searchStr, pos);
while (pos2 != std::string::npos) {
result += str.substr(pos, pos2-pos) + replacer;
pos = pos2 + searchStr.length();
pos2 = str.find(searchStr, pos);
}
result += str.substr(pos, str.length()-pos);
return result;
}
#include <string>
using std::string;
void myReplace(string& str,
const string& oldStr,
const string& newStr) {
if (oldStr.empty()) {
return;
}
for (size_t pos = 0; (pos = str.find(oldStr, pos)) != string::npos;) {
str.replace(pos, oldStr.length(), newStr);
pos += newStr.length();
}
}
A verificação de oldStr estar vazia é importante. Se por algum motivo esse parâmetro estiver vazio, você ficará preso em um loop infinito.
Mas sim, use o C ++ 11 experimentado e testado ou a solução Boost, se puder.