B2BITS FIX Antenna HFT
1.0.16
|
Encapsulates ASCII std::string processing methods. More...
#include <B2BITS_StringUtils.h>
Static Public Member Functions | |
static bool | isDigit (char c) throw () |
Returns nonzero if c is a particular representation of a decimal-digit character. More... | |
static char const * | strchr (char const *str, char c) throw () |
Find a character in a std::string. More... | |
static std::size_t | strlen (char const *str) throw () |
Returns length of the std::string. More... | |
static int | strncmp (char const *str1, char const *str2, std::size_t count) throw () |
Compare characters of two strings. More... | |
static int | strnicmp (char const *str1, char 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 char *str) throw () |
Converts strings to integer. More... | |
static System::i64 | toInt64 (const char *str) throw () |
Converts a std::string to a 64-bit integer. More... | |
Encapsulates ASCII 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::strnicmp().
|
inlinestatic |
Converts strings to integer.
str | String to be converted. |
|
inlinestatic |
Converts a std::string to a 64-bit integer.
str | String to be converted. |
References Utils::atoi64().