- 论坛徽章:
- 0
|
如果仅仅是一个姓名字段 乱码的ascii范围已知,用替换就可以了,从网上找了个替换函数
http://www.newbt.net:8022/read.csp?tid=670&fpage=1
#include <iostream>
#include<string>
using namespace std;
std::string str_replace(const std::string s, const std::string old_s, const std::string new_s)
{
size_t pos = 0;
std::string r = s;
while(true)
{
pos = r.find(old_s, pos);
if (pos == std::string::npos) break;
//c++的replace是与其他语言有所不同的
//r.replace(pos, pos + old_s.length(), new_s);
//注意第二个参数是字数
r.replace(pos, old_s.length(), new_s);
pos += new_s.length();//查找位置要向下移
}
return r;
}
//Posted:clq
void main()
{
string s1(" 李明#/");
string s2;
s2=str_replace(s1," ","");
s2=str_replace(s2,"#","");
s2=str_replace(s2,"/","");
cout<<"s1="<<s1<<endl;
cout<<"s2="<<s2<<endl;
}
//Posted:clq |
|