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

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

Patricia Arquette
发布: 2024-12-14 17:15:14
原创
165 人浏览过

How to Replace Substrings in C  ?

在 C 中将子字符串替换为另一个子字符串

在 C 中,可以使用各种函数来实现将子字符串替换为另一个子字符串。让我们探讨其中的一些选项:

std::regex_replace(C 11 及更高版本)

此函数采用正则表达式作为参数并执行搜索和替换对输入字符串进行操作。这是一个示例:

#include <string>
#include <regex>

std::string test = "abc def abc def";
test = std::regex_replace(test, std::regex("def"), "klm"); // replace 'def' -> 'klm'
// test = "abc klm abc klm"
登录后复制

std::string::replace(C 11 及更高版本)

std::string 类的此成员函数允许您用新值替换子字符串。它需要两个参数:要替换的子字符串和新值。

std::string test = "abc def abc def";
test.replace(test.find("abc"), 3, "hij"); // replace "abc" with "hij"
test.replace(test.find("def"), 3, "klm"); // replace "def" with "klm"
// test = "hij klm hij klm"
登录后复制

以上是如何替换 C 中的子字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板