首頁 > 後端開發 > C++ > 如何替換 C 中的子字串?

如何替換 C 中的子字串?

Susan Sarandon
發布: 2024-12-15 16:40:15
原創
252 人瀏覽過

How Can I Replace Substrings in C  ?

替換C 中的子字串

要替換C 中字串中的子字串,可以使用以下方法:

1. std::string::replace()

從C 11 開始,std::string::replace() 函式提供了將出現的子字串替換為另一個子字串的便利方法:

std::string str = "abc def abc def";
str.replace(str.find("abc"), 3, "hij"); // Replace "abc" with "hij"
str.replace(str.find("def"), 3, "klm"); // Replace "def" with "klm"

// str now contains "hij klm hij klm"
登入後複製

2。 std::regex_replace()

對於涉及正規表示式的更高階子字串操作, 中的std::regex_replace() 函式可以使用可以使用標題:

#include <regex>

std::string str = "abc def abc def";
str = std::regex_replace(str, std::regex("def"), "klm"); // Replace all occurrences of "def" with "klm"

// str now contains "abc klm abc klm"
登入後複製

以上是如何替換 C 中的子字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板