|
static int32_t | toUnicode (const uint8_t *utf8, int32_t length, CharArray unicode) |
| Convert uft8 buffer into unicode.
|
|
static int32_t | toUnicode (const uint8_t *utf8, int32_t length, const UnicodeResultPtr &unicodeResult) |
| Convert uft8 buffer into unicode.
|
|
static String | toUnicode (const uint8_t *utf8, int32_t length) |
| Convert uft8 buffer into unicode.
|
|
static String | toUnicode (const SingleString &s) |
| Convert uft8 string into unicode.
|
|
static int32_t | toUTF8 (const wchar_t *unicode, int32_t length, ByteArray utf8) |
| Convert unicode buffer into uft8.
|
|
static int32_t | toUTF8 (const wchar_t *unicode, int32_t length, const UTF8ResultPtr &utf8Result) |
| Convert unicode buffer into uft8.
|
|
static SingleString | toUTF8 (const wchar_t *unicode, int32_t length) |
| Convert unicode buffer into uft8.
|
|
static SingleString | toUTF8 (const String &s) |
| Convert unicode string into uft8.
|
|
static void | toLower (String &str) |
| Convert given string to lower case using current locale.
|
|
static String | toLower (const String &str) |
| Convert given string to lower case using current locale.
|
|
static void | toUpper (String &str) |
| Convert given string to upper case using current locale.
|
|
static String | toUpper (const String &str) |
| Convert given string to upper case using current locale.
|
|
static int32_t | compareCase (const String &first, const String &second) |
| Compare two strings ignoring case differences.
|
|
static Collection< String > | split (const String &str, const String &delim) |
| Splits string using given delimiters.
|
|
static int32_t | toInt (const String &value) |
| Convert the given string to int32_t.
|
|
static int64_t | toLong (const String &value) |
| Convert the given string to int64_t.
|
|
static int64_t | toLong (const String &value, int32_t base) |
| Return given value as a long integer using base unit.
|
|
static double | toDouble (const String &value) |
| Convert the given string to double.
|
|
static int32_t | hashCode (const String &value) |
| Compute the hash code from string.
|
|
static String | toString (int64_t value, int32_t base) |
| Return given value as a string using base unit.
|
|
template<class TYPE > |
static String | toString (const TYPE &value) |
| Convert any given type to a String .
|
|