简介本文介绍一个C++代码片段:C++字符串查找和替换,感兴趣的朋友可以参考一下。
#include <iostream>
#include <string>
using namespace std;
void string_replace(string &str, const string old0, const string new0);
int main(int argc, char* argv[])
{
string str = "--++---Hello World---++--";
string strKey = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghikjlmnopqrstuvwxyz";
string::size_type nPos0 = str.find_first_of(strKey);
if(nPos0 == string::npos) return -1;
string::size_type nPos1 = str.find_last_of(strKey);
if(nPos1 == string::npos) return -1;
string newstr = str.substr(nPos0, nPos1 - nPos0 + 1);
cout <<"ner string: " <<newstr << endl;
string str2 = "abc12123xyz-abc12123xyz";
string_replace(str2, "12", "98");
cout << str2 << endl;
return 0;
}
void string_replace(string &str, const string old0, const string new0)
{
string::size_type nPos = 0;
string::size_type nsrclen = old0.size();
string::size_type ndstlen = new0.size();
while(nPos = str.find(old0, nPos))
{
if(nPos == string::npos) break;
str.replace(nPos, nsrclen, new0);
nPos += ndstlen;
}
}
本文向大家介绍一个C++实战项目:C++实现雪花算法(SnowFlake)产生唯一ID,主要涉及雪花算法、算法知识等,具有一定的C++实战价值,感兴趣的朋友可以参考一下。
本文介绍一个C++代码片段:如何在C++中删除一个文件目录下的所有文件及目录,感兴趣的朋友可以参考一下。
本文介绍C++实现C++实现8种排序算法,主要包括冒泡排序、插入排序、二分插入排序、希尔排序、直接选择排序、堆排序、归并排序、快速排序,直接上代码,感兴趣的朋友可以参考一下。
本文介绍C++实现线程同步的四种方式:事件对象、互斥对象、临界区、信号量,感兴趣的朋友可以参考一下。
本文介绍C++内存泄漏的检测与定位方法,感兴趣的朋友可以参考一下。
本文向大家介绍一个C++实战项目:C++实现一个多线程安全的队列容器模板类,主要涉及C++模板类的使用、互斥体实现多线程安全、队列数据结构等知识,具有一定的C++实战价值,感兴趣的朋友可以参考一下。