Collaboration diagram for CEGUI::TextUtils:
Static Public Member Functions | |
static String | getNextWord (const String &str, String::size_type start_idx=0, const String &delimiters=DefaultWhitespace) |
return a String containing the the next word in a String. | |
static String::size_type | getWordStartIdx (const String &str, String::size_type idx) |
Return the index of the first character of the word at idx. | |
static String::size_type | getNextWordStartIdx (const String &str, String::size_type idx) |
Return the index of the first character of the word after the word at idx. | |
static void | trimLeadingChars (String &str, const String &chars) |
Trim all characters from the set specified in chars from the begining of str. | |
static void | trimTrailingChars (String &str, const String &chars) |
Trim all characters from the set specified in chars from the end of str. | |
Static Public Attributes | |
static const String | DefaultWhitespace = (utf8*)" \n\t\r" |
The default set of whitespace. | |
static const String | DefaultAlphanumerical = (utf8*)"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" |
default set of alphanumericals. | |
static const String | DefaultWrapDelimiters = (utf8*)" \n\t\r" |
The default set of word-wrap delimiters. |
|
return a String containing the the next word in a String. This method returns a String object containing the the word, starting at index start_idx, of String str as delimited by the code points specified in string delimiters (or the ends of the input string).
|
|
Return the index of the first character of the word after the word at idx. /note This currently uses DefaultWhitespace and DefaultAlphanumerical to determine groupings for what constitutes a 'word'.
|
|
Return the index of the first character of the word at idx. /note This currently uses DefaultWhitespace and DefaultAlphanumerical to determine groupings for what constitutes a 'word'.
|
|
Trim all characters from the set specified in chars from the begining of str.
|
|
Trim all characters from the set specified in chars from the end of str.
|