字串替換(C++)

來源:互聯網
上載者:User

用過python的朋友應該知道,python的string中有個replace函數,其功能是實現字串的替換,預設情況下是替換所有,如果加入參數的話會根據設定的個數進行替換,比如下面的例子:

>>> import string

>>> str1 = "ab1ab2ab3ab4"

>>> print string.replace(str1,"ab","cd")

cd1cd2cd3cd4

>>> print string.replace(str1,"ab","cd",1)

cd1ab2ab3ab4

>>> print string.replace(str1,"ab","cd",2)

cd1cd2ab3ab4

>>>

在c++中,我也想這麼用……暫時還沒找到現成的,就自己寫了個。

這裡貼出來函數的代碼,也方便我以後使用:

string m_replace(string str,string pattern,string dstPattern,int count=-1){    string retStr="";    string::size_type pos;    int i=0,l_count=0,szStr=str.length();    if(-1 == count) // replace all        count = szStr;    for(i=0; i<szStr; i++)    {                if(string::npos == (pos=str.find(pattern,i)))  break;        if(pos < szStr)        {                        retStr += str.substr(i,pos-i) + dstPattern;            i=pos+pattern.length()-1;            if(++l_count >= count)            {                i++;                break;            }        }    }    retStr += str.substr(i);    return retStr;}

補充:

當時我認為STL的replace函數不能進行不同長度的替換(現在證明是錯的),所以就沒用……

這裡有用STL的replace函數的實現:

View Code

#include <string>#include <iostream>using namespace std;string m_replace(string strSrc,                 const string &oldStr, const string &newStr,int count=-1){    string strRet=strSrc;    size_t pos = 0;    int l_count=0;    if(-1 == count) // replace all        count = strRet.size();    while ((pos = strRet.find(oldStr, pos)) != string::npos)    {        strRet.replace(pos, oldStr.size(), newStr);        if(++l_count >= count) break;        pos += newStr.size();    }    return strRet;}int main(){    string str1="ab1ab2ab3";    string str2="ab";    string str3="cd";    string str4="cdefgh";    cout<<m_replace(str1,str2,str3)<<endl;    cout<<m_replace(str1,str2,str3,1)<<endl;    cout<<m_replace(str1,str2,str4)<<endl;    cout<<m_replace(str1,str2,str4,2)<<endl;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.