用另一個字串取代部分字串
取代字串中的子字串是程式設計中的常見任務,C 提供了多種方法去做它。一種方法是使用標準 C 庫函數來尋找和替換。
使用尋找和取代
find 函數接受一個字串和一個子字串作為參數,它會傳回子字串在字串中的位置。如果未找到子字串,find 傳回 string::npos。要將一個子字串替換為另一個子字串,可以使用replace 函數。替換函數接受一個字串、一個要替換的子字串以及一個要替換的新子字串。下面是一個範例:
bool replace(std::string& str, const std::string& from, const std::string& to) { size_t start_pos = str.find(from); if(start_pos == std::string::npos) return false; str.replace(start_pos, from.length(), to); return true; } std::string string("hello $name"); replace(string, "$name", "Somename");
使用replaceAll
如果需要用另一個子字串取代所有出現的子字串,可以使用名為replaceAll 的函數。這是replaceAll 的範例實作:
void replaceAll(std::string& str, const std::string& from, const std::string& to) { if(from.empty()) return; size_t start_pos = 0; while((start_pos = str.find(from, start_pos)) != std::string::npos) { str.replace(start_pos, from.length(), to); start_pos += to.length(); // In case 'to' contains 'from', like replacing 'x' with 'yx' } }
replace 和replaceAll 都非常有效率且易於使用。它們適合在各種應用中替換字串中的子字串。
以上是如何高效替換C字串中的子字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!