惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
博客园 - 【当耐特】
V
Visual Studio Blog
GbyAI
GbyAI
V
V2EX
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
量子位
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件

博客园 - 景天

[转]mysql sql 百万级数据库优化方案 left outer join Ext.extend 【转】C#中文排序(拼音和笔画) Ext中Checkbox的注意事项 - 景天 - 博客园 表单从服务器端读取 [转]关于project2003中几个视图的认识 Oracle 常用数据字典、外键查询 Oracle 10 回收站 ASP.NET MVC beta 模板(Templates) 中文修正补丁 完整版 Oracle备份数据库的脚本 RadioButtonList的选择确认 Oracle10g常用命令 和 常用函数 Oracle 10g 笔记1 连接和SQL编写 .NET调用Oracle存储过程,使用数组类型的参数(如ArrayList) Oracle 存储过程 及 .net 调用 按钮事件 直接下载 任何文件格式 ASP.NET MVC beta 中文模板修正补丁 IE7\IE6 图片上传预览 - 景天 - 博客园
C++ 字符串替换
景天 · 2009-02-07 · via 博客园 - 景天

#include   <string>   
  #include   
<iostream>   
    
  
using   namespace   std;   
    
  
string&   replace_all(string&   str,const   string&   old_value,const   string&   new_value)   
  {   
  
while(true)   {   
  
string::size_type   pos(0);   
  
if(   (pos=str.find(old_value))!=string::npos   )   
  str.replace(pos,old_value.length(),new_value);   
  
else   break;   
  }   
  
return   str;   
  }   
    
  
string&   replace_all_distinct(string&   str,const   string&   old_value,const   string&   new_value)   
  {   
  
for(string::size_type   pos(0);   pos!=string::npos;   pos+=new_value.length())   {   
  
if(   (pos=str.find(old_value,pos))!=string::npos   )   
  str.replace(pos,old_value.length(),new_value);   
  
else   break;   
  }   
  
return   str;   
  }   
    
  
int   main()   
  {   
  cout   
<<   replace_all(string("12212"),"12","21")   <<   endl;   
  cout   
<<   replace_all_distinct(string("12212"),"12","21")   <<   endl;   
  }   
    
  
//output:   
  
//22211   
  
//21221