string replacement of those things

/*
用法一:
用s替换指定字符串从起始位置pos开始 长度未为len的字符串
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const double eps = 1e-7;
const int maxn = 5e5 + 5;
const double pi = acos(-1.0);

int main()
{
    string s="this is@ a test string!";
    s=s.replace(s.find("@"),1,"");
    cout<<s<<endl;
}
//this is a test string!


Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325396260&siteId=291194637