C++ 代码实现 解析 年月日组成的文件夹名称,例如20230102 解析出2023年1月2号
时间: 2024-03-02 14:50:02 浏览: 36
2023 年 GESP9 月认证 C++一级试卷解析
可以使用`substr`函数截取年月日的字符串,然后分别转换为整型,再输出即可。示例代码如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string folder_name = "20230102";
string year = folder_name.substr(0, 4);
string month = folder_name.substr(4, 2);
string day = folder_name.substr(6, 2);
int year_int = stoi(year);
int month_int = stoi(month);
int day_int = stoi(day);
cout << "年:" << year_int << endl;
cout << "月:" << month_int << endl;
cout << "日:" << day_int << endl;
return 0;
}
```
输出结果:
```
年:2023
月:1
日:2
```
阅读全文