libcopp 2.3.1
|
Data Structures | |
struct | int2str_helper |
Functions | |
template<class TCH = char> | |
TCH | tolower (TCH c) |
字符转小写 | |
template<class TCH = char> | |
TCH | toupper (TCH c) |
字符转大写 | |
template<class TCH > | |
bool | is_space (const TCH &c) |
是否是空白字符 | |
template<class TCH > | |
std::pair< const TCH *, size_t > | trim (const TCH *str_begin, size_t sz, bool trim_left=true, bool trim_right=true) |
移除两边或一边的空白字符 | |
template<class TCH , class TCHE > | |
void | reverse (TCH *begin, TCHE end_any) |
翻转字符串 | |
template<class TCH > | |
void | reverse (TCH *begin, int end_any) |
template<class TCH > | |
void | reverse (TCH *begin, std::nullptr_t) |
template<class T > | |
size_t | int2str_unsigned (char *str, size_t strsz, T in) |
template<class T > | |
size_t | int2str_signed (char *str, size_t strsz, T in) |
template<class T > | |
size_t | int2str (char *str, size_t strsz, const T &in) |
整数转字符串 | |
template<class T , class TCHAR > | |
const TCHAR * | str2int (T &out, const TCHAR *str, size_t strsz=0) |
字符串转整数 | |
template<class T , class TCHAR > | |
const TCHAR * | str2int (T &out, const std::basic_string< TCHAR > &str) |
template<class T , class TINPUT > | |
T | to_int (TINPUT &&input) |
字符串转整数 | |
template<class TStr , class TCh > | |
void | hex (TStr *out, TCh c, bool upper_case=false) |
字符转十六进制表示 | |
template<class TStr , class TCh > | |
void | oct (TStr *out, TCh c) |
字符转8进制表示 | |
template<class TCh > | |
void | serialization (const void *src, size_t ss, TCh *out, size_t &os) |
字符转8进制表示 | |
template<class Elem , class Traits > | |
void | serialization (const void *src, size_t ss, std::basic_ostream< Elem, Traits > &out) |
字符转8进制表示 | |
template<class TCh > | |
void | dumphex (const void *src, size_t ss, TCh *out, bool upper_case=false) |
字符转16进制表示 | |
template<class Elem , class Traits > | |
void | dumphex (const void *src, size_t ss, std::basic_ostream< Elem, Traits > &out, bool upper_case=false) |
字符转16进制表示 | |
void util::string::dumphex | ( | const void * | src, |
size_t | ss, | ||
std::basic_ostream< Elem, Traits > & | out, | ||
bool | upper_case = false |
||
) |
字符转16进制表示
src | 输入的buffer |
ss | 输入的buffer长度 |
out | 输出缓冲区 |
upper_case | 是否大写 |
Definition at line 483 of file string_oprs.h.
void util::string::dumphex | ( | const void * | src, |
size_t | ss, | ||
TCh * | out, | ||
bool | upper_case = false |
||
) |
字符转16进制表示
src | 输入的buffer |
ss | 输入的buffer长度 |
out | 输出buffer |
upper_case | 是否大写 |
Definition at line 467 of file string_oprs.h.
void util::string::hex | ( | TStr * | out, |
TCh | c, | ||
bool | upper_case = false |
||
) |
字符转十六进制表示
out | 输出的字符串(缓冲区长度至少为2) |
c | 被转换的字符 |
upper_case | 输出大写字符? |
Definition at line 378 of file string_oprs.h.
|
inline |
整数转字符串
str | 输出的字符串缓冲区 |
strsz | 字符串缓冲区长度 |
in | 输入的数字 |
Definition at line 276 of file string_oprs.h.
size_t util::string::int2str_signed | ( | char * | str, |
size_t | strsz, | ||
T | in | ||
) |
Definition at line 240 of file string_oprs.h.
References int2str_unsigned().
Referenced by util::string::int2str_helper< T >::call().
size_t util::string::int2str_unsigned | ( | char * | str, |
size_t | strsz, | ||
T | in | ||
) |
Definition at line 213 of file string_oprs.h.
References reverse().
Referenced by util::string::int2str_helper< T >::call(), and int2str_signed().
|
inline |
是否是空白字符
c | 字符 |
Definition at line 121 of file string_oprs.h.
void util::string::oct | ( | TStr * | out, |
TCh | c | ||
) |
字符转8进制表示
out | 输出的字符串(缓冲区长度至少为3) |
c | 被转换的字符 |
upper_case | 输出大写字符? |
Definition at line 405 of file string_oprs.h.
Referenced by serialization(), and serialization().
|
inline |
Definition at line 203 of file string_oprs.h.
|
inline |
Definition at line 208 of file string_oprs.h.
void util::string::reverse | ( | TCH * | begin, |
TCHE | end_any | ||
) |
翻转字符串
begin | 字符串起始地址 |
end | 字符串结束地址,填入NULL,则从begin开是找到\0结束 |
Definition at line 176 of file string_oprs.h.
References std::swap().
Referenced by int2str_unsigned().
void util::string::serialization | ( | const void * | src, |
size_t | ss, | ||
std::basic_ostream< Elem, Traits > & | out | ||
) |
字符转8进制表示
src | 输入的buffer |
ss | 输入的buffer长度 |
out | 输出缓冲区 |
Definition at line 445 of file string_oprs.h.
References oct().
void util::string::serialization | ( | const void * | src, |
size_t | ss, | ||
TCh * | out, | ||
size_t & | os | ||
) |
字符转8进制表示
src | 输入的buffer |
ss | 输入的buffer长度 |
out | 输出buffer |
os | 输出buffer长度,回传输出缓冲区使用的长度 |
Definition at line 419 of file string_oprs.h.
References oct().
const TCHAR * util::string::str2int | ( | T & | out, |
const std::basic_string< TCHAR > & | str | ||
) |
Definition at line 348 of file string_oprs.h.
References str2int().
const TCHAR * util::string::str2int | ( | T & | out, |
const TCHAR * | str, | ||
size_t | strsz = 0 |
||
) |
字符串转整数
out | 输出的整数 |
str | 被转换的字符串 |
Definition at line 292 of file string_oprs.h.
References is_space(), and tolower().
|
inline |
字符串转整数
str | 被转换的字符串 |
Definition at line 365 of file string_oprs.h.
References str2int().
TCH util::string::tolower | ( | TCH | c | ) |
字符转小写
c | 字符 |
Definition at line 92 of file string_oprs.h.
Referenced by str2int().
TCH util::string::toupper | ( | TCH | c | ) |
字符转大写
c | 字符 |
Definition at line 107 of file string_oprs.h.
std::pair< const TCH *, size_t > util::string::trim | ( | const TCH * | str_begin, |
size_t | sz, | ||
bool | trim_left = true , |
||
bool | trim_right = true |
||
) |
移除两边或一边的空白字符
str_begin | 字符串起始地址 |
sz | 字符串长度,填0则会自动判定长度 |
trim_left | 是否移除左边的空白字符 |
trim_right | 是否移除右边的空白字符 |
Definition at line 135 of file string_oprs.h.
References is_space().