在C++中,字符串替換有很多方法,這裡主要說一下STL裡的WString中的替換,雖然WString自帶了一個Replace函數,但是只能替換一次,太不好了,因此單獨寫了個替換函數
[函數]
代碼如下:
/**
* @brief 實現字符串替換
* @param orignStr 源串
* @param oldStr 查找的串
* @param newStr 替換的新串
* @return 返回修改後的串
*/
static wstring Replace(const wstring& orignStr, const wstring& oldStr, const wstring& newStr);
[實現]
代碼如下:
std::wstring Replace( const wstring& orignStr, const wstring& oldStr, const wstring& newStr )
{
size_t pos = 0;
wstring tempStr = orignStr;
wstring::size_type newStrLen = newStr.length();
wstring::size_type oldStrLen = oldStr.length();
while(true)
{
pos = tempStr.find(oldStr, pos);
if (pos == wstring::npos) break;
tempStr.replace(pos, oldStrLen, newStr);
pos += newStrLen;
}
return tempStr;
}