公告板
版本库
filestore
活动
搜索
登录
main
/
gp-client
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
'优化自启动机制'
admin
2022-10-28
086ec74e94654e92b3a1c6f42612d12ef33ff4b2
[gp-client.git]
/
app
/
StringUtils.h
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <string>
class StringUtils
{
public:
static std::string trim(const std::string source);
private:
static std::string trim(const std::string source, const std::string chars);
};