|
B2BITS FIX Antenna HFT
1.0.17
|
Encapsulates Unicode std::string processing methods. More...
#include <B2BITS_StringUtils.h>
Static Public Member Functions | |
| static bool | isDigit (wchar_t c) throw () |
| Returns nonzero if c is a particular representation of a decimal-digit character. More... | |
| static wchar_t const * | strchr (wchar_t const *str, wchar_t c) throw () |
| Find a character in a std::string. More... | |
| static std::size_t | strlen (wchar_t const *str) throw () |
| Returns length of the std::string. More... | |
| static int | strncmp (wchar_t const *str1, wchar_t const *str2, std::size_t count) throw () |
| Compare characters of two strings. More... | |
| static int | strnicmp (wchar_t const *str1, wchar_t const *str2, std::size_t count) throw () |
| This function is called to make a case-insensitive comparison of two ANSI strings. More... | |
| static System::i32 | toInt32 (const wchar_t *str) throw () |
| Converts strings to integer. More... | |
| static System::i64 | toInt64 (const wchar_t *str) throw () |
| Converts a std::string to a 64-bit integer. More... | |
Encapsulates Unicode std::string processing methods.
|
inlinestatic | ||||||||||||||
Returns nonzero if c is a particular representation of a decimal-digit character.
| c | char to test. |
|
inlinestatic | ||||||||||||||||||||
Find a character in a std::string.
| str | Null-terminated source std::string. |
| c | Character to be located. |
|
inlinestatic | ||||||||||||||
Returns length of the std::string.
| str | Null-terminated std::string. |
|
inlinestatic | ||||||||||||||||||||||||
Compare characters of two strings.
| str1 | Strings to compare. |
| str2 | Strings to compare. |
| count | Number of characters to compare. |
|
inlinestatic | ||||||||||||||||||||||||
This function is called to make a case-insensitive comparison of two ANSI strings.
| str1 | The first std::string. |
| str2 | The second std::string. |
| count | The number of characters to compare. |
References Utils::wstrnicmp().
|
inlinestatic | ||||||||||||||
|
inlinestatic | ||||||||||||||
Converts a std::string to a 64-bit integer.
| str | String to be converted. |
References Utils::wstrtoi64().
1.8.5