From cc8f9defc89f3c56088ac8de2e979938a0e85947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 5 Mar 2017 09:15:39 +0100 Subject: Facebook: Fix cutting unicode strings (fixes #711) --- utils/std_string_utils.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'utils/std_string_utils.cpp') diff --git a/utils/std_string_utils.cpp b/utils/std_string_utils.cpp index c1b46a8015..dc763524f3 100644 --- a/utils/std_string_utils.cpp +++ b/utils/std_string_utils.cpp @@ -417,6 +417,18 @@ std::string utils::text::rand_string(int len, const char *chars, unsigned int *n return out.str(); } +std::string utils::text::truncate_utf8(const std::string &text, size_t maxLength) { + // To not split some unicode character we need to transform it to wchar_t first, then split it, and then convert it back, because we want std::string as result + // TODO: Probably there is much simpler and nicer way + std::wstring wtext = ptrW(mir_utf8decodeW(text.c_str())); + if (wtext.length() > maxLength) { + wtext = wtext.substr(0, maxLength) + L"\x2026"; // unicode ellipsis + return std::string(_T2A(wtext.c_str(), CP_UTF8)); + } + // It's not longer, return given string + return text; +} + int utils::number::random(int min, int max, unsigned int *number) { if (number != NULL) { -- cgit v1.2.3