用新字符串替换字符串段
在 C 中,用另一个字符串替换字符串的一部分需要组合操作。虽然某些库提供了专用的 Replace() 函数来进行直接替换,但您可以使用标准 C 函数来实现它:
使用 find() 和 Replace() 函数
find() 函数定位字符串中子字符串的位置。通过将其与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");
此方法替换第一次出现的子字符串“$name” ” 与“Somename.”
将所有出现的情况替换为ReplaceAll
要替换所有出现的子字符串,您可以扩展 Replace() 方法来搜索并替换字符串中的多个实例:
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(); // Adjust start position if 'to' contains 'from' } }
此函数执行将给定字符串中所有出现的子字符串“from”连续替换为字符串“to”。
以上是如何在 C 中替换字符串的一部分?的详细内容。更多信息请关注PHP中文网其他相关文章!