我正在使用以下代码替换system date
Windows 操作系统中格式的特殊字符。
但我只能替换一个字符。
代码:
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string str("10/16/13");
string str2("/");
str.replace(str.find(str2),str2.length(),"-");
cout << str << endl;
return 0;
}
输出:
10-16/13