DCMTK
Version 3.6.7
OFFIS DICOM Toolkit
|
Classes | |
struct | dcmtk::log4cplus::helpers::ConvertIntegerToStringHelper< intType > |
Functions | |
DCMTK_LOG4CPLUS_EXPORT log4cplus::tstring | dcmtk::log4cplus::helpers::toUpper (const log4cplus::tstring &s) |
DCMTK_LOG4CPLUS_EXPORT log4cplus::tstring | dcmtk::log4cplus::helpers::toLower (const log4cplus::tstring &s) |
template<class StringType > | |
void | dcmtk::log4cplus::helpers::tokenize (const StringType &s, typename StringType::value_type c, OFVector< StringType > &result, bool collapseTokens=true) |
Tokenize s using c as the delimiter and put the resulting tokens in _result . More... | |
|
inline |
Tokenize s
using c
as the delimiter and put the resulting tokens in _result
.
If collapseTokens
is false, multiple adjacent delimiters will result in zero length tokens.
Example:
string s = // Set string with '.' as delimiters list<tstring> tokens; tokenize(s, '.', back_insert_iterator<list<string> >(tokens));
s | the string to be tokenized |
c | the delimiter to be used to tokenized |
result | the resulting tokens |
collapseTokens | when false, multiple adjacent delimiters will result in zero length tokens. |
References OFVector< T >::push_back(), and dcmtk::log4cplus::helpers::tokenize().
Referenced by dcmtk::log4cplus::helpers::tokenize().
DCMTK_LOG4CPLUS_EXPORT log4cplus::tstring dcmtk::log4cplus::helpers::toLower | ( | const log4cplus::tstring & | s | ) |
s | the value to be converted into lowercase |
s
in upper case. DCMTK_LOG4CPLUS_EXPORT log4cplus::tstring dcmtk::log4cplus::helpers::toUpper | ( | const log4cplus::tstring & | s | ) |
s | the value to be converted into uppercase |
s
in upper case.