#include <irrString.h>
Public Types | |
typedef T | char_type |
Public Member Functions | |
string () | |
Default constructor. More... | |
string (const string< T, TAlloc > &other) | |
Constructor. More... | |
template<class B , class A > | |
string (const string< B, A > &other) | |
Constructor from other string types. More... | |
string (const double number) | |
Constructs a string from a float. More... | |
string (int number) | |
Constructs a string from an int. More... | |
string (unsigned int number) | |
Constructs a string from an unsigned int. More... | |
string (long number) | |
Constructs a string from a long. More... | |
string (unsigned long number) | |
Constructs a string from an unsigned long. More... | |
template<class B > | |
string (const B *const c, u32 length) | |
Constructor for copying a string from a pointer with a given length. More... | |
template<class B > | |
string (const B *const c) | |
Constructor for unicode and ascii strings. More... | |
~string () | |
Destructor. More... | |
string< T, TAlloc > & | append (T character) |
Appends a character to this string. More... | |
string< T, TAlloc > & | append (const T *const other, u32 length=0xffffffff) |
Appends a char string to this string. More... | |
string< T, TAlloc > & | append (const string< T, TAlloc > &other) |
Appends a string to this string. More... | |
string< T, TAlloc > & | append (const string< T, TAlloc > &other, u32 length) |
Appends a string of the length l to this string. More... | |
const T * | c_str () const |
Returns character string. More... | |
bool | empty () const |
bool | equals_ignore_case (const string< T, TAlloc > &other) const |
Compares the strings ignoring case. More... | |
bool | equals_substring_ignore_case (const string< T, TAlloc > &other, const s32 sourcePos=0) const |
Compares the strings ignoring case. More... | |
bool | equalsn (const string< T, TAlloc > &other, u32 n) const |
compares the first n characters of the strings More... | |
bool | equalsn (const T *const str, u32 n) const |
compares the first n characters of the strings More... | |
string< T, TAlloc > & | erase (u32 index) |
Erases a character from the string. More... | |
template<class B > | |
s32 | find (const B *const str, const u32 start=0) const |
finds another string in this string More... | |
s32 | findFirst (T c) const |
finds first occurrence of character in string More... | |
s32 | findFirstChar (const T *const c, u32 count=1) const |
finds first occurrence of a character of a list in string More... | |
template<class B > | |
s32 | findFirstCharNotInList (const B *const c, u32 count=1) const |
Finds first position of a character not in a given list. More... | |
s32 | findLast (T c, s32 start=-1) const |
finds last occurrence of character in string More... | |
s32 | findLastChar (const T *const c, u32 count=1) const |
finds last occurrence of a character of a list in string More... | |
template<class B > | |
s32 | findLastCharNotInList (const B *const c, u32 count=1) const |
Finds last position of a character not in a given list. More... | |
s32 | findNext (T c, u32 startPos) const |
finds next occurrence of character in string More... | |
T | lastChar () const |
gets the last char of a string or null More... | |
bool | lower_ignore_case (const string< T, TAlloc > &other) const |
Compares the strings ignoring case. More... | |
string< T, TAlloc > & | make_lower () |
Makes the string lower case. More... | |
string< T, TAlloc > & | make_upper () |
Makes the string upper case. More... | |
bool | operator!= (const T *const str) const |
Inequality operator. More... | |
bool | operator!= (const string< T, TAlloc > &other) const |
Inequality operator. More... | |
string< T, TAlloc > | operator+ (const string< T, TAlloc > &other) const |
Append operator for other strings. More... | |
template<class B > | |
string< T, TAlloc > | operator+ (const B *const c) const |
Append operator for strings, ascii and unicode. More... | |
string< T, TAlloc > & | operator+= (T c) |
Appends a character to this string. More... | |
string< T, TAlloc > & | operator+= (const T *const c) |
Appends a char string to this string. More... | |
string< T, TAlloc > & | operator+= (const string< T, TAlloc > &other) |
Appends a string to this string. More... | |
string< T, TAlloc > & | operator+= (const int i) |
Appends a string representation of a number to this string. More... | |
string< T, TAlloc > & | operator+= (const unsigned int i) |
Appends a string representation of a number to this string. More... | |
string< T, TAlloc > & | operator+= (const long i) |
Appends a string representation of a number to this string. More... | |
string< T, TAlloc > & | operator+= (const unsigned long i) |
Appends a string representation of a number to this string. More... | |
string< T, TAlloc > & | operator+= (const double i) |
Appends a string representation of a number to this string. More... | |
string< T, TAlloc > & | operator+= (const float i) |
Appends a string representation of a number to this string. More... | |
bool | operator< (const string< T, TAlloc > &other) const |
Is smaller comparator. More... | |
string< T, TAlloc > & | operator= (const string< T, TAlloc > &other) |
Assignment operator. More... | |
template<class B , class A > | |
string< T, TAlloc > & | operator= (const string< B, A > &other) |
Assignment operator for other string types. More... | |
template<class B > | |
string< T, TAlloc > & | operator= (const B *const c) |
Assignment operator for strings, ascii and unicode. More... | |
bool | operator== (const T *const str) const |
Equality operator. More... | |
bool | operator== (const string< T, TAlloc > &other) const |
Equality operator. More... | |
T & | operator[] (const u32 index) |
Direct access operator. More... | |
const T & | operator[] (const u32 index) const |
Direct access operator. More... | |
string< T, TAlloc > & | remove (T c) |
Removes characters from a string. More... | |
string< T, TAlloc > & | remove (const string< T, TAlloc > &toRemove) |
Removes a string from the string. More... | |
string< T, TAlloc > & | removeChars (const string< T, TAlloc > &characters) |
Removes characters from a string. More... | |
string< T, TAlloc > & | replace (T toReplace, T replaceWith) |
Replaces all characters of a special type with another one. More... | |
string< T, TAlloc > & | replace (const string< T, TAlloc > &toReplace, const string< T, TAlloc > &replaceWith) |
Replaces all instances of a string with another one. More... | |
void | reserve (u32 count) |
Reserves some memory. More... | |
u32 | size () const |
Returns length of the string's content. More... | |
template<class container > | |
u32 | split (container &ret, const T *const c, u32 count=1, bool ignoreEmptyTokens=true, bool keepSeparators=false) const |
split string into parts. More... | |
string< T > | subString (u32 begin, s32 length, bool make_lower=false) const |
Returns a substring. More... | |
string< T, TAlloc > & | trim (const string< T, TAlloc > &whitespace=" \\) |
Trims the string. More... | |
string< T, TAlloc > & | validate () |
verify the existing string. More... | |
Definition at line 73 of file irrString.h.
typedef T irr::core::string< T, TAlloc >::char_type |
Definition at line 77 of file irrString.h.
|
inline |
Default constructor.
Definition at line 80 of file irrString.h.
|
inline |
Constructor.
Definition at line 89 of file irrString.h.
|
inline |
Constructor from other string types.
Definition at line 97 of file irrString.h.
|
inlineexplicit |
Constructs a string from a float.
Definition at line 105 of file irrString.h.
|
inlineexplicit |
Constructs a string from an int.
Definition at line 115 of file irrString.h.
|
inlineexplicit |
Constructs a string from an unsigned int.
Definition at line 163 of file irrString.h.
|
inlineexplicit |
Constructs a string from a long.
Definition at line 194 of file irrString.h.
|
inlineexplicit |
Constructs a string from an unsigned long.
Definition at line 242 of file irrString.h.
|
inline |
Constructor for copying a string from a pointer with a given length.
Definition at line 274 of file irrString.h.
|
inline |
Constructor for unicode and ascii strings.
Definition at line 296 of file irrString.h.
|
inline |
Destructor.
Definition at line 304 of file irrString.h.
|
inline |
Appends a character to this string.
character | Character to append. |
Definition at line 603 of file irrString.h.
Referenced by irr::core::string< fschar_t >::append(), irr::scene::quake3::dumpShader(), irr::scene::quake3::dumpVarGroup(), irr::scene::quake3::getTextures(), irr::core::string< fschar_t >::operator+(), and irr::core::string< fschar_t >::operator+=().
|
inline |
Appends a char string to this string.
other | Char string to append. |
length | The length of the string to append. |
Definition at line 620 of file irrString.h.
|
inline |
Appends a string to this string.
other | String to append. |
Definition at line 652 of file irrString.h.
|
inline |
Appends a string of the length l to this string.
other | other String to append to this string. |
length | How much characters of the other string to add to this one. |
Definition at line 675 of file irrString.h.
|
inline |
Returns character string.
Definition at line 495 of file irrString.h.
Referenced by irr::core::deletePathFromFilename(), irr::gui::IGUIElement::deserializeAttributes(), irr::scene::ISceneNode::getName(), irr::gui::IGUIElement::getName(), irr::gui::IGUIElement::getText(), irr::scene::quake3::SVariable::operator<(), irr::scene::quake3::IShader::operator<(), irr::core::string< fschar_t >::operator=(), irr::scene::quake3::SVariable::operator==(), irr::scene::quake3::IShader::operator==(), irr::core::string< fschar_t >::replace(), irr::scene::ISceneNode::serializeAttributes(), and irr::gui::IGUIElement::serializeAttributes().
|
inline |
Informs if the string is empty or not.
Definition at line 488 of file irrString.h.
|
inline |
Compares the strings ignoring case.
other | Other string to compare. |
Definition at line 522 of file irrString.h.
|
inline |
Compares the strings ignoring case.
other | Other string to compare. |
sourcePos | where to start to compare in the string |
Definition at line 535 of file irrString.h.
Referenced by irr::core::isFileExtension().
|
inline |
compares the first n characters of the strings
other | Other string to compare. |
n | Number of characters to compare |
Definition at line 569 of file irrString.h.
Referenced by irr::core::isInSameDirectory().
|
inline |
compares the first n characters of the strings
str | Other string to compare. |
n | Number of characters to compare |
Definition at line 586 of file irrString.h.
|
inline |
Erases a character from the string.
May be slow, because all elements following after the erased element have to be copied.
index | Index of element to be erased. |
Definition at line 1235 of file irrString.h.
|
inline |
finds another string in this string
str | Another string |
start | Start position of the search |
Definition at line 859 of file irrString.h.
Referenced by irr::core::string< fschar_t >::replace().
|
inline |
finds first occurrence of character in string
c | Character to search for. |
Definition at line 718 of file irrString.h.
|
inline |
finds first occurrence of a character of a list in string
c | List of characters to find. For example if the method should find the first occurrence of 'a' or 'b', this parameter should be "ab". |
count | Amount of characters in the list. Usually, this should be strlen(c) |
Definition at line 734 of file irrString.h.
|
inline |
Finds first position of a character not in a given list.
c | List of characters not to find. For example if the method should find the first occurrence of a character not 'a' or 'b', this parameter should be "ab". |
count | Amount of characters in the list. Usually, this should be strlen(c) |
Definition at line 756 of file irrString.h.
Referenced by irr::core::string< fschar_t >::trim().
|
inline |
finds last occurrence of character in string
c | Character to search for. |
start | start to search reverse ( default = -1, on end ) |
Definition at line 822 of file irrString.h.
Referenced by irr::core::cutFilenameExtension(), irr::core::getFileNameExtension(), and irr::core::isFileExtension().
|
inline |
finds last occurrence of a character of a list in string
c | List of strings to find. For example if the method should find the last occurrence of 'a' or 'b', this parameter should be "ab". |
count | Amount of characters in the list. Usually, this should be strlen(c) |
Definition at line 839 of file irrString.h.
|
inline |
Finds last position of a character not in a given list.
c | List of characters not to find. For example if the method should find the first occurrence of a character not 'a' or 'b', this parameter should be "ab". |
count | Amount of characters in the list. Usually, this should be strlen(c) |
Definition at line 783 of file irrString.h.
Referenced by irr::core::string< fschar_t >::trim().
|
inline |
finds next occurrence of character in string
c | Character to search for. |
startPos | Position in string to start searching. |
Definition at line 807 of file irrString.h.
Referenced by irr::core::isInSameDirectory().
|
inline |
gets the last char of a string or null
Definition at line 1274 of file irrString.h.
|
inline |
Compares the strings ignoring case.
other | Other string to compare. |
Definition at line 552 of file irrString.h.
|
inline |
Makes the string lower case.
Definition at line 502 of file irrString.h.
Referenced by irr::io::SNamedPath::PathToName(), and irr::core::string< fschar_t >::subString().
|
inline |
Makes the string upper case.
Definition at line 511 of file irrString.h.
|
inline |
Inequality operator.
Definition at line 465 of file irrString.h.
|
inline |
Inequality operator.
Definition at line 472 of file irrString.h.
|
inline |
Append operator for other strings.
Definition at line 388 of file irrString.h.
|
inline |
Append operator for strings, ascii and unicode.
Definition at line 399 of file irrString.h.
|
inline |
Appends a character to this string.
c | Character to append. |
Definition at line 925 of file irrString.h.
|
inline |
Appends a char string to this string.
c | Char string to append. |
Definition at line 934 of file irrString.h.
|
inline |
Appends a string to this string.
other | String to append. |
Definition at line 943 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 952 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 961 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 970 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 979 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 988 of file irrString.h.
|
inline |
Appends a string representation of a number to this string.
i | Number to append. |
Definition at line 997 of file irrString.h.
|
inline |
Is smaller comparator.
Definition at line 451 of file irrString.h.
|
inline |
Assignment operator.
Definition at line 311 of file irrString.h.
|
inline |
Assignment operator for other string types.
Definition at line 333 of file irrString.h.
|
inline |
Assignment operator for strings, ascii and unicode.
Definition at line 342 of file irrString.h.
|
inline |
Equality operator.
Definition at line 425 of file irrString.h.
|
inline |
Equality operator.
Definition at line 440 of file irrString.h.
|
inline |
Direct access operator.
Definition at line 409 of file irrString.h.
|
inline |
Direct access operator.
Definition at line 417 of file irrString.h.
|
inline |
Removes characters from a string.
c | Character to remove. |
Definition at line 1127 of file irrString.h.
|
inline |
Removes a string from the string.
toRemove | String to remove. |
Definition at line 1149 of file irrString.h.
|
inline |
Removes characters from a string.
characters | Characters to remove. |
Definition at line 1182 of file irrString.h.
|
inline |
Replaces all characters of a special type with another one.
toReplace | Character to replace. |
replaceWith | Character replacing the old one. |
Definition at line 1007 of file irrString.h.
Referenced by irr::core::isInSameDirectory(), irr::io::SNamedPath::PathToName(), and irr::core::string< fschar_t >::replace().
|
inline |
Replaces all instances of a string with another one.
toReplace | The string to replace. |
replaceWith | The string replacing the old one. |
Definition at line 1019 of file irrString.h.
|
inline |
Reserves some memory.
count | Amount of characters to reserve. |
Definition at line 705 of file irrString.h.
Referenced by irr::core::string< fschar_t >::subString().
|
inline |
Returns length of the string's content.
Definition at line 481 of file irrString.h.
Referenced by irr::core::string< fschar_t >::append(), irr::core::cutFilenameExtension(), irr::core::deletePathFromFilename(), irr::core::deletePathFromPath(), irr::core::string< fschar_t >::empty(), irr::scene::quake3::getCullingFunction(), irr::core::getFileNameExtension(), irr::core::isInSameDirectory(), irr::scene::quake3::SVariable::isValid(), irr::core::string< fschar_t >::operator=(), irr::core::string< fschar_t >::remove(), irr::core::string< fschar_t >::removeChars(), irr::core::string< fschar_t >::replace(), and irr::core::string< fschar_t >::subString().
|
inline |
split string into parts.
This method will split a string at certain delimiter characters into the container passed in as reference. The type of the container has to be given as template parameter. It must provide a push_back and a size method.
ret | The result container |
c | C-style string of delimiter characters |
count | Number of delimiter characters |
ignoreEmptyTokens | Flag to avoid empty substrings in the result container. If two delimiters occur without a character in between, an empty substring would be placed in the result. If this flag is set, only non-empty strings are stored. |
keepSeparators | Flag which allows to add the separator to the result string. If this flag is true, the concatenation of the substrings results in the original string. Otherwise, only the characters between the delimiters are returned. |
Definition at line 1298 of file irrString.h.
|
inline |
Returns a substring.
begin | Start of substring. |
length | Length of substring. |
make_lower | copy only lower case |
Definition at line 891 of file irrString.h.
Referenced by irr::core::cutFilenameExtension(), irr::core::getFileNameExtension(), irr::core::isInSameDirectory(), and irr::core::string< fschar_t >::trim().
|
inline |
Trims the string.
Removes the specified characters (by default, Latin-1 whitespace) from the begining and the end of the string.
Definition at line 1218 of file irrString.h.
|
inline |
verify the existing string.
Definition at line 1247 of file irrString.h.
Referenced by irr::core::deletePathFromPath().