แทนที่สตริงย่อยด้วยสตริงย่อย C ++ อื่น


92

ฉันจะแทนที่สตริงย่อยในสตริงด้วยสตริงย่อยอื่นใน C ++ ได้อย่างไรฉันจะใช้ฟังก์ชันอะไรได้บ้าง

eg: string test = "abc def abc def";
test.replace("abc", "hij").replace("def", "klm"); //replace occurrence of abc and def with other substring

5
ค่อนข้างซ้ำกันของstackoverflow.com/questions/3418231/…ซึ่งมีโซลูชันที่มีประสิทธิภาพมากกว่าในคำตอบที่ยอมรับ
dave-holm

คำตอบ:


79

ไม่มีฟังก์ชันในตัวใน C ++ สำหรับทำสิ่งนี้ หากคุณต้องการที่จะเปลี่ยนทุกกรณีหนึ่งย่อยอีกด้วยคุณสามารถทำได้โดยการโทรไปยัง intermixing และstring::find string::replaceตัวอย่างเช่น:

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;
}

ในบรรทัดสุดท้ายของโค้ดนี้ฉันได้เพิ่มindexความยาวของสตริงที่แทรกเข้าไปในสตริง ในตัวอย่างนี้ - แทนที่"abc"ด้วย"def"- ซึ่งไม่จำเป็นจริงๆ อย่างไรก็ตามในการตั้งค่าทั่วไปสิ่งสำคัญคือต้องข้ามสตริงที่เพิ่งถูกแทนที่ ตัวอย่างเช่นหากคุณต้องการแทนที่"abc"ด้วย"abcabc"โดยไม่ข้ามส่วนของสตริงที่เพิ่งเปลี่ยนใหม่รหัสนี้จะแทนที่ส่วนของสตริงที่เพิ่งเปลี่ยนใหม่อย่างต่อเนื่องจนกว่าหน่วยความจำจะหมด อย่างอิสระอาจเร็วกว่าเล็กน้อยในการข้ามผ่านอักขระใหม่เหล่านั้นเนื่องจากการทำเช่นนี้จะช่วยประหยัดเวลาและความพยายามในการstring::findทำงาน

หวังว่านี่จะช่วยได้!


6
ฉันไม่เชื่อว่าคุณจะต้องเพิ่มดัชนีเนื่องจากคุณได้แทนที่ข้อมูลไปแล้วดังนั้นจึงไม่สามารถรับข้อมูลได้
rossb83

1
@Aidiakapi หากสิ่งนี้ถูกเปลี่ยนเป็นฟังก์ชันวัตถุประสงค์ทั่วไปมันจะไม่ติดอยู่ในลูปที่ไม่มีที่สิ้นสุดเพราะมันเลื่อนตำแหน่งการค้นหา ( index) ผ่านส่วนของสตริงที่ถูกแทนที่
Tim R.

2
@TimR. คุณพูดถูกฉันกำลังตอบกลับ rossb83 ที่ระบุว่าการเพิ่มขึ้นของดัชนีนั้นไม่จำเป็น เป็นเพียงการพยายามป้องกันข้อมูลที่ผิด ดังนั้นสำหรับคนอื่น ๆ : การเพิ่มขึ้นของดัชนีโดยความยาวของสตริงแทนที่ที่ (ในกรณีนี้ 3) เป็นสิ่งที่จำเป็น อย่าลบออกจากตัวอย่างโค้ด
Aidiakapi

@FrozenKiwi ฉันประหลาดใจที่ได้ยินเช่นนั้น แน่ใจหรือว่าเป็นเช่นนั้น
templatetypedef

1
@JulianCienfuegos ฉันเพิ่งอัปเดตคำตอบเพื่อแก้ไขปัญหานี้ - ขอบคุณที่ชี้ให้เห็น! (นอกจากนี้ Aidiakapi เป็นคนอื่น ... ไม่แน่ใจว่าเป็นใคร)
templatetypedef

70

วิธีเพิ่มไลบรารีอัลกอริทึมสตริง :

#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"
  );
}

6
เจ. ฉันต้องการเพิ่มเพื่อแทนที่สตริงย่อยทั้งหมด
Johannes Overmann

3
Boost ส่วนใหญ่เป็น overkill
Konrad


44

ฉันคิดว่าโซลูชันทั้งหมดจะล้มเหลวหากความยาวของสตริงการแทนที่แตกต่างจากความยาวของสตริงที่จะแทนที่ (ค้นหา "abc" และแทนที่ด้วย "xxxxxx") แนวทางทั่วไปอาจเป็น:

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 );
    }
}

42
str.replace(str.find(str2),str2.length(),str3);

ที่ไหน

  • str เป็นสตริงฐาน
  • str2 คือสตริงย่อยที่จะค้นหา
  • str3 เป็นสตริงย่อยทดแทน

3
สิ่งนี้จะแทนที่ครั้งแรกเท่านั้นใช่หรือไม่?
jpo38

5
ฉันขอแนะนำให้แน่ใจว่าผลลัพธ์ของ str.find (str2) ไม่เท่ากับ std :: string :: npos auto found = str.find (str2); ถ้า (found! = std :: string :: npos) str.replace (found, str2.length (), str3);
Geoff Lentsch

1
ฉันไม่ได้ตั้งใจจะเขียนแอปพลิเคชันทั้งหมดด้วยสิ่งนี้ แต่หากไม่มีการตรวจสอบข้อมูลใด ๆ มีบางกรณีที่ไม่ได้กำหนด ....
Jeff Zacher

20

การเปลี่ยนสตริงย่อยไม่ควรยากขนาดนั้น

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;
}

หากคุณต้องการประสิทธิภาพนี่คือฟังก์ชันที่ปรับให้เหมาะสมซึ่งจะปรับเปลี่ยนสตริงอินพุตโดยจะไม่สร้างสำเนาของสตริง:

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();
    }
}

การทดสอบ:

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;

เอาท์พุต:

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

ต้องเพิ่มการตรวจสอบif (search.empty()) { return; }เพื่อหลีกเลี่ยงการวนซ้ำที่ไม่มีที่สิ้นสุดเมื่อ 'ค้นหา' ว่างเปล่า
โปรแกรมเมอร์ iOS

พยายาม ReplaceString - ไม่ทำงาน แต่ตอบร้อง: str.replace (str.find (str2), str2.length (), str3); เรียบง่ายและใช้งานได้ดี
KAMIKAZE

6
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;
}

เนื่องจากไม่ใช่สมาชิกของstringคลาสจึงไม่อนุญาตให้ใช้ไวยากรณ์ที่ดีเท่าในตัวอย่างของคุณ แต่สิ่งต่อไปนี้จะเทียบเท่า:

test = string_replace( string_replace( test, "abc", "hij"), "def", "klm")

3

การสรุปคำตอบของ rotmax นี่คือวิธีแก้ปัญหาแบบเต็มในการค้นหาและแทนที่อินสแตนซ์ทั้งหมดในสตริง หากสตริงย่อยทั้งสองมีขนาดต่างกันสตริงย่อยจะถูกแทนที่โดยใช้สตริง :: ลบและสตริง :: แทรกมิฉะนั้นจะใช้สตริง :: แทนที่ที่เร็วกว่า

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 );
    }
  }
}

3

หากคุณแน่ใจว่าสตริงย่อยที่ต้องการมีอยู่ในสตริงสิ่งนี้จะแทนที่การเกิดขึ้นครั้งแรกของ"abc"ถึง"hij"

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

มันจะพังหากคุณไม่มี "abc" ในการทดสอบดังนั้นโปรดใช้ด้วยความระมัดระวัง


1
    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;
    }

ฉันคิดว่าสิ่งนี้เหมาะกับความต้องการของคุณด้วยรหัสไม่กี่!


คุณไม่ได้คำนึงถึงการเกิดขึ้น / การเปลี่ยนหลายครั้ง
Elias Bachaalany

1

นี่คือวิธีแก้ปัญหาที่ฉันเขียนโดยใช้กลยุทธ์การสร้าง:

#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());
}

การทดสอบ:

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);

}

0

เวอร์ชั่นไร้ที่ติโดย @Czarek Tomczak
อนุญาตทั้งสองstd::stringและ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();
    }
}

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;
};

0

นี่คือวิธีแก้ปัญหาโดยใช้การเรียกซ้ำซึ่งแทนที่การเกิดขึ้นทั้งหมดของสตริงย่อยด้วยสตริงย่อยอื่น สิ่งนี้ใช้ได้ผลไม่ว่าสตริงจะมีขนาดเท่าใดก็ตาม

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);
}

ตัวอย่างการใช้งาน:

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;

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;
}

โซลูชันสั้น ๆ ที่คุณไม่ต้องการไลบรารีเพิ่มเติม


1
มีอีก 14 คำตอบสำหรับคำถามนี้ ทำไมไม่เสนอคำอธิบายว่าทำไมของคุณถึงดีกว่า?
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;
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.