1 cpp-base64 本次要使用的是Github上开源的base64编解码库:https://github.com/ReneNyffenegger/cpp-base64,也是我在实际项目中经常使用…
- C++
- 2023-02-09
1 当前时间转字符串 # -*- coding: utf-8 -*- import time if __name__ == '__main__': # 以年_月_日_时_分_秒形式输出时间字符串,示例…
- Python
- 2022-07-21
1 C++ std::string输出双引号到字符串 输出双引号“”到字符串中可以通过添加转义字符"\"对双引号进行转义, 可参考代码如下: int main() { string str = "\"…
- C++
- 2021-01-28
1 代码示例 #include <iostream> using namespace std; int GetRepeatCountInStr(const std::string &…
- C++
- 2020-05-06