cc++替换字符串中的关键字(包括等转义字符)
最近⼯作的时候有碰到⼀个问题,输⼊字符串中存在“\”,处理程序在读取到的时候会将其当做转义字符,导致输⼊字符串错误。所以产⽣了两个需求:1.需要将“\”替换为“\\”。2.⼜因为,其他需求也存在在⽬标字符串中寻对应的⼦串,将⼦串替换成⽬标⼦串的需求。了⼀下⽹上的相关替换都是针对单个char类型字符的,这种场景适合适合第⼀个需求,第⼆个需求就不合适了,所以现在写了⼀个同时满⾜两个需求的代码。在这⾥分享⼀下。
#include <iostream>
using namespace std;
std::string ReplaceAllword(const std::string& resources, const string& key, const std::string& ReplaceKey)
{
size_t pos=0;
std::string temp = resources;
while((pos=temp.find(key,pos))!=string::npos)
{
temp.insert(pos, ReplaceKey);//插⼊替换字符串
pos+= ReplaceKey.size(); //更新查询起始标志位
}
return temp;
}
int main()
{
//std::string str = "qwert99yt99us99agj";
std::string str = "qwert\\yt\\us\\agj";
cout<<str<<endl;
//cout<<ReplaceAllword(str, "9", "AA")<<endl;
cout<<ReplaceAllword(str, "\\", "\\\\")<<endl;
}
输出结果:
replaceall()clh01s@ubuntu:~/test$ ./a.out
本次为将每个“99”替换为“AA”
qwert99yt99us99agj
qwertAAytAAusAAagj
clh01s@ubuntu:~/test$ ./a.out
本次为将每个“\”替换为“\\”
qwert\yt\us\agj
qwert\\yt\\us\\agj
clh01s@ubuntu:~/test$ ./a.out
本次为将每个“9”替换为“AA”
qwert99yt99us99agj
qwertAAAAytAAAAusAAAAagj
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论