• 大小: 529B
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: C/C++
  • 标签: c++  

资源简介

使用c++写的字符串替换函数,可以完成字符串的替换功能

资源截图

代码片段和文件信息

#include 
#include 

using namespace std;

void replace(string& s const string& oldVal const string& newVal)
{
string::size_type pos = 0;
unsigned cnt = 0;
while (pos != string::npos)
{
pos = s.find(oldVal pos);
if ( pos

评论

共有 条评论