XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xtd::xstring< _ChT > Class Template Reference

Extends std::string with some added functionality. More...

+ Inheritance diagram for xtd::xstring< _ChT >:
+ Collaboration diagram for xtd::xstring< _ChT >:

Public Types

using _super_t = std::basic_string< _ChT >
 
using size_type = typename _super_t::size_type
 

Public Member Functions

template<typename... _ArgsT>
 xstring (_ArgsT &&...oArgs)
 Generic constructor forwards everything to the base class.
 
size_type find_first_of (const std::initializer_list< _ChT > &delimiters, size_type pos=0) const
 finds the first occurance of any item
 
xstringltrim ()
 Trim leading whitespace.
 
xstringreplace (std::initializer_list< _ChT > oItems, _ChT chReplace)
 
xstringrtrim ()
 Trim trailing whitespace.
 
std::vector< xstring< _ChT > > split (const std::initializer_list< _ChT > &delimiters, bool trimEmpty=false) const
 splits the string by the specified delmiters into constituent elements
 
xstringto_lower (const std::locale &loc)
 Converts the string to lower case. More...
 
xstringto_upper (const std::locale &loc)
 Converts the string to upper case. More...
 
xstringtrim ()
 

Static Public Member Functions

static xstring format ()
 Type safe formatting Appends each item in the parameter list together performing type-safe verification and printing. More...
 
template<typename _Ty , typename... _ArgsT>
static xstring format (const _Ty &val, _ArgsT &&...oArgs)
 

Detailed Description

template<typename _ChT>
class xtd::xstring< _ChT >

Extends std::string with some added functionality.

Template Parameters
_ChTcharacter type

Definition at line 30 of file string.hpp.

Member Function Documentation

template<typename _ChT>
static xstring xtd::xstring< _ChT >::format ( )
inlinestatic

Type safe formatting Appends each item in the parameter list together performing type-safe verification and printing.

Parameters
oArgsvariable elements appended together

Definition at line 62 of file string.hpp.

template<typename _ChT>
xstring& xtd::xstring< _ChT >::to_lower ( const std::locale &  loc)
inline

Converts the string to lower case.

Parameters
locThe locale to use during conversion

Definition at line 80 of file string.hpp.

template<typename _ChT>
xstring& xtd::xstring< _ChT >::to_upper ( const std::locale &  loc)
inline

Converts the string to upper case.

Parameters
locThe locale to use during conversion

Definition at line 91 of file string.hpp.


The documentation for this class was generated from the following file: