首页 >后端开发 >C++ >如何替换 C 中的子字符串?

如何替换 C 中的子字符串?

Susan Sarandon
Susan Sarandon原创
2024-12-15 16:40:15253浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn