Go to the source code of this file.
Functions | |
char * | itoa (int value, char *result, int base) |
std::string | itoa (int value, int base) |
std::string | NumToString (const int n) |
std::string | NumToString (const unsigned int n) |
std::string | NumToString (const long l) |
std::string | NumToString (const float f, unsigned int width, unsigned int precise) |
std::string | NumToString (const double d, unsigned int width, unsigned int precise) |
std::string | StringToLower (std::string strToConvert) |
std::string | StringToUpper (std::string strToConvert) |
char* itoa | ( | int | value, |
char * | result, | ||
int | base | ||
) |
C++ version char* style "itoa":
Definition at line 106 of file StrUtil.cpp.
std::string itoa | ( | int | value, |
int | base | ||
) |
C++ version std::string style "itoa":
Definition at line 133 of file StrUtil.cpp.
std::string NumToString | ( | const int | n | ) |
convert the number to a string
n | the integer number to be converted |
Definition at line 73 of file StrUtil.cpp.
std::string NumToString | ( | const unsigned int | n | ) |
convert the number to a string
n | the unsigned integer number to be converted |
Definition at line 79 of file StrUtil.cpp.
std::string NumToString | ( | const long | l | ) |
convert the number to a string
l | the long integer number to be converted |
Definition at line 85 of file StrUtil.cpp.
std::string NumToString | ( | const float | f, |
unsigned int | width = 10 , |
||
unsigned int | precise = 7 |
||
) |
convert the number to a string
f | the float point number to be converted |
width | format of the width of the floating number, default = 10 |
precise | format of the precise of the floating number, default = 7 |
Definition at line 91 of file StrUtil.cpp.
std::string NumToString | ( | const double | d, |
unsigned int | width = 16 , |
||
unsigned int | precise = 12 |
||
) |
convert the number to a string
d | the double precise number to be converted |
width | format of the width of the number, default = 16 |
precise | format of the precise of the number, default = 12 |
Definition at line 97 of file StrUtil.cpp.
std::string StringToLower | ( | std::string | strToConvert | ) |
change the string to lower case
strToConvert | the string to be converted |
Definition at line 65 of file StrUtil.cpp.
std::string StringToUpper | ( | std::string | strToConvert | ) |
change the string to upper case
strToConvert | the string to be converted |
Definition at line 57 of file StrUtil.cpp.