C 快速高效替換字串中指定子字串 毫秒級別

2021-10-05 14:39:09 字數 1161 閱讀 1150

//idx 起始位置

//str 源字串

//str1 需要替換的子字串

//str2 替換成需要的子字串

string strreplace(string::size_type idx, string str, string str1, string str2)

catch (...)

return "";

}//strinput    替換前的源字串

//stroutput    替換後的目標字串

//psrc        需要替換的單個字元

//pdst        替換成需要的單個字元

void quitreplace(string strinput, string stroutput, char psrc, char pdst)

stroutput = std::string(std::make_move_iterator(vec_str.begin()), std::make_move_iterator(vec_str.end()));

}//函式返回string的寫法

string quitreplace2(char *pinput, char *psrc, char *pdst)

// 複製剩餘字串.    

for (int j = 0; j < strlen(pi); ++j)

m_vecdata.push_back(pi[j]);

}else

return std::string(std::make_move_iterator(m_vecdata.begin()), std::make_move_iterator(m_vecdata.end()));

}//這三種方法各有特點,當資料量大但需要替換的子字串少時,建議用strreplace, 當資料量大且需要替換的子字串多時,建議用quitreplace2(優先)或quitreplace。

親測有效可用下面**測試速度

clock_t starttime, endtime;

starttime = clock();

/**** 這裡填需要測試的函式 ****/

endtime = clock();

double dbtime = (double)(endtime - starttime) / clocks_per_sec;

替換字串中的指定子串

input 原字串 find 被替換的子串 replacewith 替換字串 string stringreplace const string input,const string find,const string replacewith return strout 在網上搜尋的時候看到好多人都...

c 快速替換字串指定字元

專案中偶爾要用到替換指定字元的功能,因為不常用每次一用到的就去官方文件看,總得花點兒時間感覺不是那麼好用,自己想了個辦法,可能性能不是最好的但我感覺應該是最直觀明了的 以下是實現 include include include include using namespace std int main...

C 擷取指定子字串

在tcp通訊中,資料是一直在發的,為了保證我們需要的命令包是完整的,那麼一定會有命令頭和尾,然後再擷取中心的命令資料處理,留下剩下的字串。string s qwer asdf zxcv int startops s.indexof console.writeline startops int end...