2012-05-29 13:31:11 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#ifndef NLGEORGES_STRING_EX_H
|
|
|
|
#define NLGEORGES_STRING_EX_H
|
|
|
|
|
|
|
|
#include "nel/misc/stream.h"
|
|
|
|
|
|
|
|
namespace NLOLDGEORGES
|
|
|
|
{
|
|
|
|
|
|
|
|
class CStringEx : public std::basic_string<char, std::char_traits<char>, std::allocator<char> >
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
CStringEx() : std::basic_string<char, std::char_traits<char>, std::allocator<char> >() {}
|
|
|
|
CStringEx( char* _pc ) : std::basic_string<char, std::char_traits<char>, std::allocator<char> >( (char *)_pc ) {}
|
|
|
|
CStringEx( std::string _s ) : std::basic_string<char, std::char_traits<char>, std::allocator<char> >( (std::string)_s) {}
|
|
|
|
CStringEx( const char _c, int _i ) { append( _i, _c ); }
|
|
|
|
|
|
|
|
virtual ~CStringEx();
|
|
|
|
CStringEx get_remove() const;
|
|
|
|
CStringEx get_remove( const char ) const;
|
|
|
|
CStringEx get_make_lower() const;
|
|
|
|
CStringEx get_make_upper() const;
|
|
|
|
CStringEx get_trim_left() const;
|
|
|
|
CStringEx get_trim_left( const char _c ) const;
|
|
|
|
CStringEx get_trim_right() const;
|
|
|
|
CStringEx get_trim_right( const char _c ) const;
|
|
|
|
CStringEx get_trim() const;
|
|
|
|
CStringEx get_trim( const char _c ) const;
|
|
|
|
CStringEx get_mid( const int nFirst, const int nCount ) const;
|
|
|
|
CStringEx get_mid( const int nFirst ) const;
|
|
|
|
CStringEx get_left( const int nCount ) const;
|
|
|
|
CStringEx get_right( const int nCount ) const;
|
|
|
|
CStringEx get_purge() const;
|
|
|
|
|
|
|
|
void remove();
|
|
|
|
void remove( const char _c );
|
|
|
|
void make_lower();
|
|
|
|
void make_upper();
|
|
|
|
void trim_left();
|
|
|
|
void trim_left( const char _c );
|
|
|
|
void trim_right();
|
|
|
|
void trim_right( const char _c );
|
|
|
|
void trim();
|
|
|
|
void trim( const char _c );
|
|
|
|
void mid( const int nFirst, const int nCount );
|
|
|
|
void mid( const int nFirst );
|
|
|
|
void left( const int nCount );
|
|
|
|
void right( const int nCount );
|
|
|
|
void purge();
|
|
|
|
|
|
|
|
void format( const char*, ... );
|
|
|
|
std::string::size_type reverse_find( const char _c ) const;
|
|
|
|
|
|
|
|
void serial( NLMISC::IStream& s ) { s.serial( (std::string&)(*this) );}
|
|
|
|
|
|
|
|
bool operator <= ( const CStringEx& s ) const;
|
|
|
|
bool operator < ( const CStringEx& s ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // NLGEORGES
|
|
|
|
|
|
|
|
#endif // NLGEORGES_STRING_EX_H
|