2 Star 11 Fork 4

啊全仔 / NginxGUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
StringUtils.cpp 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
啊全仔 提交于 2021-01-22 23:11 . 初始化提交
// StringUtils.cpp: implementation of the CStringUtils class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "NginxGUI.h"
#include "StringUtils.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CStringUtils::CStringUtils()
{
}
CStringUtils::~CStringUtils()
{
}
// ʽַ
CString CStringUtils::FormatString(LPCTSTR pstrFormat, ...)
{
CString strResult;
va_list args;
va_start(args, pstrFormat);
strResult.FormatV(pstrFormat, args);
va_end(args);
return strResult;
}
// ʽ·
CString CStringUtils::FormatPath(CString path){
path.Replace("\\", "/");
path.MakeLower();
return path;
}
C++
1
https://gitee.com/laqmans/nginx-gui.git
git@gitee.com:laqmans/nginx-gui.git
laqmans
nginx-gui
NginxGUI
master

搜索帮助