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()
正規表現を含むより高度な部分文字列操作の場合は、
#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 中国語 Web サイトの他の関連記事を参照してください。