code_app/utility/HGString.h

14 lines
333 B
C
Raw Normal View History

2022-05-03 10:25:52 +00:00
#ifndef __HGSTRING_H__
#define __HGSTRING_H__
#include <string>
// 标准字符串windows下为ansi编码linux下为utf8编码
// UTF8转标准字符串
std::string Utf8ToStdString(const std::string& utf8Str);
2022-05-03 10:25:52 +00:00
// 标准字符串转UTF8
std::string StdStringToUtf8(const std::string& stdStr);
2022-05-03 10:25:52 +00:00
#endif /* __HGSTRING_H__ */