|
char * | Compress (const char *str) |
| Remove all blanks from the string str. More...
|
|
int | EscChar (const char *src, char *dst, int dstlen, char *specchars, char escchar) |
| Escape specchars in src with escchar and copy to dst. More...
|
|
char * | Form (const char *fmt,...) |
|
UInt_t | Hash (const char *s) |
| Return a case-sensitive hash value (endian independent). More...
|
|
UInt_t | Hash (const TString &s) |
|
UInt_t | Hash (const TString *s) |
|
Bool_t | operator!= (const char *s1, const TString &s2) |
|
Bool_t | operator!= (const char *s1, const TSubString &s2) |
|
Bool_t | operator!= (const TString &s1, const char *s2) |
|
Bool_t | operator!= (const TString &s1, const TString &s2) |
|
Bool_t | operator!= (const TString &s1, const TSubString &s2) |
|
Bool_t | operator!= (const TSubString &s1, const char *s2) |
|
Bool_t | operator!= (const TSubString &s1, const TString &s2) |
|
Bool_t | operator!= (const TSubString &s1, const TSubString &s2) |
|
TString | operator+ (char c, const TString &s) |
| Add string to char. More...
|
|
TString | operator+ (const char *cs, const TString &s) |
| Use the special concatenation constructor. More...
|
|
TString | operator+ (const TString &s, char c) |
| Add char to string. More...
|
|
TString | operator+ (const TString &s, const char *cs) |
| Use the special concatenation constructor. More...
|
|
TString | operator+ (const TString &s1, const TString &s2) |
| Use the special concatenation constructor. More...
|
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsFloatNumeral< T >::value, TString >::type | operator+ (T f, const TString &s) |
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsSignedNumeral< T >::value, TString >::type | operator+ (T i, const TString &s) |
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsUnsignedNumeral< T >::value, TString >::type | operator+ (T u, const TString &s) |
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsFloatNumeral< T >::value, TString >::type | operator+ (TString s, T f) |
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsSignedNumeral< T >::value, TString >::type | operator+ (TString s, T i) |
|
template<class T > |
std::enable_if< ROOT::TypeTraits::IsUnsignedNumeral< T >::value, TString >::type | operator+ (TString s, T u) |
|
std::string & | operator+= (std::string &left, const TString &right) |
|
Bool_t | operator< (const char *s1, const TString &s2) |
|
Bool_t | operator< (const TString &s1, const char *s2) |
|
Bool_t | operator< (const TString &s1, const TString &s2) |
|
std::ostream & | operator<< (std::ostream &str, const TString &s) |
| Write string to stream. More...
|
|
TBuffer & | operator<< (TBuffer &buf, const TString *sp) |
| Write TString or derived to TBuffer. More...
|
|
Bool_t | operator<= (const char *s1, const TString &s2) |
|
Bool_t | operator<= (const TString &s1, const char *s2) |
|
Bool_t | operator<= (const TString &s1, const TString &s2) |
|
Bool_t | operator== (const char *s1, const std::string_view &s2) |
|
Bool_t | operator== (const char *s1, const TString &s2) |
|
Bool_t | operator== (const char *s1, const TSubString &s2) |
|
Bool_t | operator== (const std::string_view &s1, const char *s2) |
|
Bool_t | operator== (const TString &s1, const char *s2) |
| Compare TString with a char *. More...
|
|
Bool_t | operator== (const TString &s1, const TString &s2) |
|
Bool_t | operator== (const TString &s1, const TSubString &s2) |
|
Bool_t | operator== (const TSubString &s1, const char *s2) |
| Compare sub-string to char *. More...
|
|
Bool_t | operator== (const TSubString &s1, const TString &s2) |
| Compare sub-string to string. More...
|
|
Bool_t | operator== (const TSubString &s1, const TSubString &s2) |
| Compare two sub-strings. More...
|
|
Bool_t | operator> (const char *s1, const TString &s2) |
|
Bool_t | operator> (const TString &s1, const char *s2) |
|
Bool_t | operator> (const TString &s1, const TString &s2) |
|
Bool_t | operator>= (const char *s1, const TString &s2) |
|
Bool_t | operator>= (const TString &s1, const char *s2) |
|
Bool_t | operator>= (const TString &s1, const TString &s2) |
|
std::istream & | operator>> (std::istream &str, TString &s) |
| Read string from stream. More...
|
|
TBuffer & | operator>> (TBuffer &buf, TString *&sp) |
| Read string from TBuffer. Function declared in ClassDef. More...
|
|
void | Printf (const char *fmt,...) |
|
char * | StrDup (const char *str) |
| Duplicate the string str. More...
|
|
char * | Strip (const char *str, char c=' ') |
| Strip leading and trailing c (blanks by default) from a string. More...
|
|
TString | ToLower (const TString &s) |
| Return a lower-case version of str. More...
|
|
TString | ToUpper (const TString &s) |
| Return an upper-case version of str. More...
|
|
int | UnEscChar (const char *src, char *dst, int dstlen, char *specchars, char escchar) |
| Un-escape specchars in src from escchar and copy to dst. More...
|
|