add wstring to stirng.
This commit is contained in:
parent
264ac80d2b
commit
2ad8209814
@ -28,7 +28,7 @@ target_include_directories(mbedtls-${MBEDTLS_VERSION}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(Encrypt
|
target_link_libraries(Encrypt
|
||||||
PRIVATE mbedtls-${MBEDTLS_VERSION}
|
PUBLIC mbedtls-${MBEDTLS_VERSION}
|
||||||
)
|
)
|
||||||
|
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#include "StringUtility.h"
|
#include "StringUtility.h"
|
||||||
#include "BoostLog.h"
|
#include "BoostLog.h"
|
||||||
#include <algorithm>
|
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
#include <codecvt>
|
#include <codecvt>
|
||||||
|
#ifdef WIN32
|
||||||
|
#include <Windows.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Amass {
|
namespace Amass {
|
||||||
|
|
||||||
@ -54,6 +56,18 @@ std::wstring stringToWString(const std::string &string) {
|
|||||||
return converter.from_bytes(string);
|
return converter.from_bytes(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string wstringToString(const std::wstring &string) {
|
||||||
|
#ifdef WIN32
|
||||||
|
int sizeNeeded = WideCharToMultiByte(CP_UTF8, 0, string.c_str(), string.size(), NULL, 0, NULL, NULL);
|
||||||
|
std::string ret(sizeNeeded, 0);
|
||||||
|
WideCharToMultiByte(CP_UTF8, 0, string.c_str(), string.size(), &ret[0], sizeNeeded, NULL, NULL);
|
||||||
|
#else
|
||||||
|
std::string ret;
|
||||||
|
assert(false && "not implement.");
|
||||||
|
#endif
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
bool equal(std::string_view lhs, std::string_view rhs, bool caseSensitivity) {
|
bool equal(std::string_view lhs, std::string_view rhs, bool caseSensitivity) {
|
||||||
auto n = lhs.size();
|
auto n = lhs.size();
|
||||||
if (rhs.size() != n) return false;
|
if (rhs.size() != n) return false;
|
||||||
|
@ -60,6 +60,7 @@ size_t utf8Length(const std::string &text);
|
|||||||
std::string_view utf8At(const std::string &text, size_t index);
|
std::string_view utf8At(const std::string &text, size_t index);
|
||||||
size_t utf8CharacterByteSize(const char *character);
|
size_t utf8CharacterByteSize(const char *character);
|
||||||
std::wstring stringToWString(const std::string &string);
|
std::wstring stringToWString(const std::string &string);
|
||||||
|
std::string wstringToString(const std::wstring &string);
|
||||||
|
|
||||||
} // namespace StringUtility
|
} // namespace StringUtility
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user