公告板
版本库
filestore
活动
搜索
登录
main
/
gp-client
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
'GPU内核方法优化'
admin
2023-03-07
8b06b1cbf112d55307ea8a6efe711db4e7506d89
[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);
};