Public Types | |
typedef utf32 | value_type |
Basic 'code point' type used for String (utf32). | |
typedef size_t | size_type |
Unsigned type used for size values and indices. | |
typedef ptrdiff_t | difference_type |
Signed type used for differences. | |
typedef utf32 & | reference |
Type used for utf32 code point references. | |
typedef const utf32 & | const_reference |
Type used for constant utf32 code point references. | |
typedef utf32 * | pointer |
Type used for utf32 code point pointers. | |
typedef const utf32 * | const_pointer |
Type used for constant utf32 code point pointers. | |
typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
Constant reverse iterator class for String objects. | |
typedef std::reverse_iterator< iterator > | reverse_iterator |
Reverse iterator class for String objects. | |
Public Member Functions | |
String (void) | |
Constructs an empty string. | |
~String (void) | |
Destructor for String objects. | |
String (const String &str) | |
Copy constructor - Creates a new string with the same value as str. | |
String (const String &str, size_type str_idx, size_type str_num=npos) | |
Constructs a new string initialised with code points from another String object. | |
String (const std::string &std_str) | |
Constructs a new string and initialises it using the std::string std_str. | |
String (const std::string &std_str, size_type str_idx, size_type str_num=npos) | |
Constructs a new string initialised with characters from the given std::string object. | |
String (const utf8 *utf8_str) | |
Constructs a new String object and initialise it using the provided utf8 encoded string buffer. | |
String (const utf8 *utf8_str, size_type chars_len) | |
Constructs a new String object and initialise it using the provided utf8 encoded string buffer. | |
String (size_type num, utf32 code_point) | |
Constructs a new String that is initialised with the specified code point. | |
String (const_iterator iter_beg, const_iterator iter_end) | |
Construct a new string object and initialise it with code-points from the range [beg, end). | |
String (const char *cstr) | |
Constructs a new String object and initialise it using the provided c-string. | |
String (const char *chars, size_type chars_len) | |
Constructs a new String object and initialise it using characters from the provided char array. | |
size_type | size (void) const |
Returns the size of the String in code points. | |
size_type | length (void) const |
Returns the size of the String in code points. | |
bool | empty (void) const |
Returns true if the String is empty. | |
size_type | capacity (void) const |
Return the number of code points that the String could hold before a re-allocation would be required. | |
void | reserve (size_type num=0) |
Specifies the amount of reserve capacity to allocate. | |
int | compare (const String &str) const |
Compares this String with the String 'str'. | |
int | compare (size_type idx, size_type len, const String &str, size_type str_idx=0, size_type str_len=npos) const |
Compares code points from this String with code points from the String 'str'. | |
int | compare (const std::string &std_str) const |
Compares this String with the std::string 'std_str'. | |
int | compare (size_type idx, size_type len, const std::string &std_str, size_type str_idx=0, size_type str_len=npos) const |
Compares code points from this String with code points from the std::string 'std_str'. | |
int | compare (const utf8 *utf8_str) const |
Compares this String with the null-terminated utf8 encoded 'utf8_str'. | |
int | compare (size_type idx, size_type len, const utf8 *utf8_str) const |
Compares code points from this String with the null-terminated utf8 encoded 'utf8_str'. | |
int | compare (size_type idx, size_type len, const utf8 *utf8_str, size_type str_cplen) const |
Compares code points from this String with the utf8 encoded data in buffer 'utf8_str'. | |
int | compare (const char *cstr) const |
Compares this String with the given c-string. | |
int | compare (size_type idx, size_type len, const char *cstr) const |
Compares code points from this String with the given c-string. | |
int | compare (size_type idx, size_type len, const char *chars, size_type chars_len) const |
Compares code points from this String with chars in the given char array. | |
reference | operator[] (size_type idx) |
Returns the code point at the given index. | |
value_type | operator[] (size_type idx) const |
Returns the code point at the given index. | |
reference | at (size_type idx) |
Returns the code point at the given index. | |
const_reference | at (size_type idx) const |
Returns the code point at the given index. | |
const char * | c_str (void) const |
Returns contents of the String as a null terminated string of utf8 encoded data. | |
const utf8 * | data (void) const |
Returns contents of the String as utf8 encoded data. | |
size_type | copy (utf8 *buf, size_type len=npos, size_type idx=0) const |
Copies an area of the String into the provided buffer as encoded utf8 data. | |
size_type | utf8_stream_len (size_type num=npos, size_type idx=0) |
Return the number of utf8 code units required to hold an area of the String when encoded as utf8 data. | |
String & | operator= (const String &str) |
Assign the value of String str to this String. | |
String & | assign (const String &str, size_type str_idx=0, size_type str_num=npos) |
Assign a sub-string of String str to this String. | |
String & | operator= (const std::string &std_str) |
Assign the value of std::string std_str to this String. | |
String & | assign (const std::string &std_str, size_type str_idx=0, size_type str_num=npos) |
Assign a sub-string of std::string std_str to this String. | |
String & | operator= (const utf8 *utf8_str) |
Assign to this String the string value represented by the given null-terminated utf8 encoded data. | |
String & | assign (const utf8 *utf8_str) |
Assign to this String the string value represented by the given null-terminated utf8 encoded data. | |
String & | assign (const utf8 *utf8_str, size_type str_num) |
Assign to this String the string value represented by the given utf8 encoded data. | |
String & | operator= (utf32 code_point) |
Assigns the specified utf32 code point to this String. Result is always a String 1 code point in length. | |
String & | assign (size_type num, utf32 code_point) |
Assigns the specified code point repeatedly to the String. | |
String & | operator= (const char *cstr) |
Assign to this String the given C-string. | |
String & | assign (const char *cstr) |
Assign to this String the given C-string. | |
String & | assign (const char *chars, size_type chars_len) |
Assign to this String a number of chars from a char array. | |
void | swap (String &str) |
Swaps the value of this String with the given String str. | |
String & | operator+= (const String &str) |
Appends the String str. | |
String & | append (const String &str, size_type str_idx=0, size_type str_num=npos) |
Appends a sub-string of the String str. | |
String & | operator+= (const std::string &std_str) |
Appends the std::string std_str. | |
String & | append (const std::string &std_str, size_type str_idx=0, size_type str_num=npos) |
Appends a sub-string of the std::string std_str. | |
String & | operator+= (const utf8 *utf8_str) |
Appends to the String the null-terminated utf8 encoded data in the buffer utf8_str. | |
String & | append (const utf8 *utf8_str) |
Appends to the String the null-terminated utf8 encoded data in the buffer utf8_str. | |
String & | append (const utf8 *utf8_str, size_type len) |
Appends to the String the utf8 encoded data in the buffer utf8_str. | |
String & | operator+= (utf32 code_point) |
Appends a single code point to the string. | |
String & | append (size_type num, utf32 code_point) |
Appends a single code point multiple times to the string. | |
void | push_back (utf32 code_point) |
Appends a single code point to the string. | |
String & | append (const_iterator iter_beg, const_iterator iter_end) |
Appends the code points in the reange [beg, end). | |
String & | operator+= (const char *cstr) |
Appends to the String the given c-string. | |
String & | append (const char *cstr) |
Appends to the String the given c-string. | |
String & | append (const char *chars, size_type chars_len) |
Appends to the String chars from the given char array. | |
String & | insert (size_type idx, const String &str) |
Inserts the given String object at the specified position. | |
String & | insert (size_type idx, const String &str, size_type str_idx, size_type str_num) |
Inserts a sub-string of the given String object at the specified position. | |
String & | insert (size_type idx, const std::string &std_str) |
Inserts the given std::string object at the specified position. | |
String & | insert (size_type idx, const std::string &std_str, size_type str_idx, size_type str_num) |
Inserts a sub-string of the given std::string object at the specified position. | |
String & | insert (size_type idx, const utf8 *utf8_str) |
Inserts the given null-terminated utf8 encoded data at the specified position. | |
String & | insert (size_type idx, const utf8 *utf8_str, size_type len) |
Inserts the given utf8 encoded data at the specified position. | |
String & | insert (size_type idx, size_type num, utf32 code_point) |
Inserts a code point multiple times into the String. | |
void | insert (iterator pos, size_type num, utf32 code_point) |
Inserts a code point multiple times into the String. | |
iterator | insert (iterator pos, utf32 code_point) |
Inserts a single code point into the String. | |
void | insert (iterator iter_pos, const_iterator iter_beg, const_iterator iter_end) |
Inserts code points specified by the range [beg, end). | |
String & | insert (size_type idx, const char *cstr) |
Inserts the given c-string at the specified position. | |
String & | insert (size_type idx, const char *chars, size_type chars_len) |
Inserts chars from the given char array at the specified position. | |
void | clear (void) |
Removes all data from the String. | |
String & | erase (void) |
Removes all data from the String. | |
String & | erase (size_type idx) |
Erase a single code point from the string. | |
String & | erase (size_type idx, size_type len=npos) |
Erase a range of code points. | |
String & | erase (iterator pos) |
Erase the code point described by the given iterator. | |
String & | erase (iterator iter_beg, iterator iter_end) |
Erase a range of code points described by the iterators [beg, end). | |
void | resize (size_type num) |
Resizes the String either by inserting default utf32 code points to make it larger, or by truncating to make it smaller. | |
void | resize (size_type num, utf32 code_point) |
Resizes the String either by inserting the given utf32 code point to make it larger, or by truncating to make it smaller. | |
String & | replace (size_type idx, size_type len, const String &str) |
Replace code points in the String with the specified String object. | |
String & | replace (iterator iter_beg, iterator iter_end, const String &str) |
Replace the code points in the range [beg, end) with the specified String object. | |
String & | replace (size_type idx, size_type len, const String &str, size_type str_idx, size_type str_num) |
Replace code points in the String with a specified sub-string of a given String object. | |
String & | replace (size_type idx, size_type len, const std::string &std_str) |
Replace code points in the String with the specified std::string object. | |
String & | replace (iterator iter_beg, iterator iter_end, const std::string &std_str) |
Replace the code points in the range [beg, end) with the specified std::string object. | |
String & | replace (size_type idx, size_type len, const std::string &std_str, size_type str_idx, size_type str_num) |
Replace code points in the String with a specified sub-string of a given std::string object. | |
String & | replace (size_type idx, size_type len, const utf8 *utf8_str) |
Replace code points in the String with the specified null-terminated utf8 encoded data. | |
String & | replace (iterator iter_beg, iterator iter_end, const utf8 *utf8_str) |
Replace the code points in the range [beg, end) with the specified null-terminated utf8 encoded data. | |
String & | replace (size_type idx, size_type len, const utf8 *utf8_str, size_type str_len) |
Replace code points in the String with the specified utf8 encoded data. | |
String & | replace (iterator iter_beg, iterator iter_end, const utf8 *utf8_str, size_type str_len) |
Replace the code points in the range [beg, end) with the specified null-terminated utf8 encoded data. | |
String & | replace (size_type idx, size_type len, size_type num, utf32 code_point) |
Replaces a specified range of code points with occurrences of a given code point. | |
String & | replace (iterator iter_beg, iterator iter_end, size_type num, utf32 code_point) |
Replace the code points in the range [beg, end) with occurrences of a given code point. | |
String & | replace (iterator iter_beg, iterator iter_end, const_iterator iter_newBeg, const_iterator iter_newEnd) |
Replace the code points in the range [beg, end) with code points from the range [newBeg, newEnd). | |
String & | replace (size_type idx, size_type len, const char *cstr) |
Replace code points in the String with the specified c-string. | |
String & | replace (iterator iter_beg, iterator iter_end, const char *cstr) |
Replace the code points in the range [beg, end) with the specified c-string. | |
String & | replace (size_type idx, size_type len, const char *chars, size_type chars_len) |
Replace code points in the String with chars from the given char array. | |
String & | replace (iterator iter_beg, iterator iter_end, const char *chars, size_type chars_len) |
Replace the code points in the range [beg, end) with chars from the given char array. | |
size_type | find (utf32 code_point, size_type idx=0) const |
Search forwards for a given code point. | |
size_type | rfind (utf32 code_point, size_type idx=npos) const |
Search backwards for a given code point. | |
size_type | find (const String &str, size_type idx=0) const |
Search forwards for a sub-string. | |
size_type | rfind (const String &str, size_type idx=npos) const |
Search backwards for a sub-string. | |
size_type | find (const std::string &std_str, size_type idx=0) const |
Search forwards for a sub-string. | |
size_type | rfind (const std::string &std_str, size_type idx=npos) const |
Search backwards for a sub-string. | |
size_type | find (const utf8 *utf8_str, size_type idx=0) const |
Search forwards for a sub-string. | |
size_type | rfind (const utf8 *utf8_str, size_type idx=npos) const |
Search backwards for a sub-string. | |
size_type | find (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Search forwards for a sub-string. | |
size_type | rfind (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Search backwards for a sub-string. | |
size_type | find (const char *cstr, size_type idx=0) const |
Search forwards for a sub-string. | |
size_type | rfind (const char *cstr, size_type idx=npos) const |
Search backwards for a sub-string. | |
size_type | find (const char *chars, size_type idx, size_type chars_len) const |
Search forwards for a sub-string. | |
size_type | rfind (const char *chars, size_type idx, size_type chars_len) const |
Search backwards for a sub-string. | |
size_type | find_first_of (const String &str, size_type idx=0) const |
Find the first occurrence of one of a set of code points. | |
size_type | find_first_not_of (const String &str, size_type idx=0) const |
Find the first code point that is not one of a set of code points. | |
size_type | find_first_of (const std::string &std_str, size_type idx=0) const |
Find the first occurrence of one of a set of code points. | |
size_type | find_first_not_of (const std::string &std_str, size_type idx=0) const |
Find the first code point that is not one of a set of code points. | |
size_type | find_first_of (const utf8 *utf8_str, size_type idx=0) const |
Find the first occurrence of one of a set of code points. | |
size_type | find_first_not_of (const utf8 *utf8_str, size_type idx=0) const |
Find the first code point that is not one of a set of code points. | |
size_type | find_first_of (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Find the first occurrence of one of a set of code points. | |
size_type | find_first_not_of (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Find the first code point that is not one of a set of code points. | |
size_type | find_first_of (utf32 code_point, size_type idx=0) const |
Search forwards for a given code point. | |
size_type | find_first_not_of (utf32 code_point, size_type idx=0) const |
Search forwards for the first code point that does not match a given code point. | |
size_type | find_first_of (const char *cstr, size_type idx=0) const |
Find the first occurrence of one of a set of chars. | |
size_type | find_first_not_of (const char *cstr, size_type idx=0) const |
Find the first code point that is not one of a set of chars. | |
size_type | find_first_of (const char *chars, size_type idx, size_type chars_len) const |
Find the first occurrence of one of a set of chars. | |
size_type | find_first_not_of (const char *chars, size_type idx, size_type chars_len) const |
Find the first code point that is not one of a set of chars. | |
size_type | find_last_of (const String &str, size_type idx=npos) const |
Find the last occurrence of one of a set of code points. | |
size_type | find_last_not_of (const String &str, size_type idx=npos) const |
Find the last code point that is not one of a set of code points. | |
size_type | find_last_of (const std::string &std_str, size_type idx=npos) const |
Find the last occurrence of one of a set of code points. | |
size_type | find_last_not_of (const std::string &std_str, size_type idx=npos) const |
Find the last code point that is not one of a set of code points. | |
size_type | find_last_of (const utf8 *utf8_str, size_type idx=npos) const |
Find the last occurrence of one of a set of code points. | |
size_type | find_last_not_of (const utf8 *utf8_str, size_type idx=npos) const |
Find the last code point that is not one of a set of code points. | |
size_type | find_last_of (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Find the last occurrence of one of a set of code points. | |
size_type | find_last_not_of (const utf8 *utf8_str, size_type idx, size_type str_len) const |
Find the last code point that is not one of a set of code points. | |
size_type | find_last_of (utf32 code_point, size_type idx=npos) const |
Search for last occurrence of a given code point. | |
size_type | find_last_not_of (utf32 code_point, size_type idx=npos) const |
Search for the last code point that does not match a given code point. | |
size_type | find_last_of (const char *cstr, size_type idx=npos) const |
Find the last occurrence of one of a set of chars. | |
size_type | find_last_not_of (const char *cstr, size_type idx=npos) const |
Find the last code point that is not one of a set of chars. | |
size_type | find_last_of (const char *chars, size_type idx, size_type chars_len) const |
Find the last occurrence of one of a set of chars. | |
size_type | find_last_not_of (const char *chars, size_type idx, size_type chars_len) const |
Find the last code point that is not one of a set of chars. | |
String | substr (size_type idx=0, size_type len=npos) const |
Returns a substring of this String. | |
iterator | begin (void) |
Return a forwards iterator that describes the beginning of the String. | |
const_iterator | begin (void) const |
Return a constant forwards iterator that describes the beginning of the String. | |
iterator | end (void) |
Return a forwards iterator that describes the end of the String. | |
const_iterator | end (void) const |
Return a constant forwards iterator that describes the end of the String. | |
reverse_iterator | rbegin (void) |
Return a reverse iterator that describes the beginning of the String. | |
const_reverse_iterator | rbegin (void) const |
Return a constant reverse iterator that describes the beginning of the String. | |
reverse_iterator | rend (void) |
Return a reverse iterator that describes the end of the String. | |
const_reverse_iterator | rend (void) const |
Return a constant reverse iterator that describes the end of the String. | |
Static Public Member Functions | |
static size_type | max_size (void) |
Returns the maximum size of a String. | |
Static Public Attributes | |
static const size_type | npos = (String::size_type)(-1) |
Value used to represent 'not found' conditions and 'all code points' etc. | |
Classes | |
class | const_iterator |
Constant forward iterator class for String objects. More... | |
class | iterator |
Forward iterator class for String objects. More... |
For the most part, this class can replace std::string in basic usage. However, currently String does not use the current locale, and also comparisons do not take into account the Unicode data tables, so are not 'correct' as such.
|
Copy constructor - Creates a new string with the same value as str.
|
|
Constructs a new string initialised with code points from another String object.
|
|
Constructs a new string and initialises it using the std::string std_str.
|
|
Constructs a new string initialised with characters from the given std::string object.
|
|
Constructs a new String object and initialise it using the provided utf8 encoded string buffer.
|
|
Constructs a new String object and initialise it using the provided utf8 encoded string buffer. A basic string literal (cast to utf8*) can be passed to this function, provided that the string is comprised only of code points 0x00..0x7f. The use of extended ASCII characters (with values >0x7f) would result in incorrect behaviour as the String will attempt to 'decode' the data, with unpredictable results.
|
|
Constructs a new String that is initialised with the specified code point.
|
|
Construct a new string object and initialise it with code-points from the range [beg, end).
|
|
Constructs a new String object and initialise it using the provided c-string.
|
|
Constructs a new String object and initialise it using characters from the provided char array.
|
|
Appends to the String chars from the given char array.
|
|
Appends to the String the given c-string.
|
|
Appends the code points in the reange [beg, end).
|
|
Appends a single code point multiple times to the string.
|
|
Appends to the String the utf8 encoded data in the buffer utf8_str.
|
|
Appends to the String the null-terminated utf8 encoded data in the buffer utf8_str.
|
|
Appends a sub-string of the std::string std_str.
|
|
Appends a sub-string of the String str.
|
|
Assign to this String a number of chars from a char array.
|
|
Assign to this String the given C-string.
|
|
Assigns the specified code point repeatedly to the String.
|
|
Assign to this String the string value represented by the given utf8 encoded data.
|
|
Assign to this String the string value represented by the given null-terminated utf8 encoded data.
|
|
Assign a sub-string of std::string std_str to this String.
|
|
Assign a sub-string of String str to this String.
|
|
Returns the code point at the given index.
|
|
Returns the code point at the given index.
|
|
Return a constant forwards iterator that describes the beginning of the String.
|
|
Return a forwards iterator that describes the beginning of the String.
|
|
Returns contents of the String as a null terminated string of utf8 encoded data.
|
|
Return the number of code points that the String could hold before a re-allocation would be required.
|
|
Removes all data from the String.
|
|
Compares code points from this String with chars in the given char array.
|
|
Compares code points from this String with the given c-string.
|
|
Compares this String with the given c-string.
|
|
Compares code points from this String with the utf8 encoded data in buffer 'utf8_str'.
|
|
Compares code points from this String with the null-terminated utf8 encoded 'utf8_str'.
|
|
Compares this String with the null-terminated utf8 encoded 'utf8_str'.
|
|
Compares code points from this String with code points from the std::string 'std_str'.
|
|
Compares this String with the std::string 'std_str'.
|
|
Compares code points from this String with code points from the String 'str'.
|
|
Compares this String with the String 'str'.
|
|
Copies an area of the String into the provided buffer as encoded utf8 data.
|
|
Returns contents of the String as utf8 encoded data.
|
|
Returns true if the String is empty.
|
|
Return a constant forwards iterator that describes the end of the String.
|
|
Return a forwards iterator that describes the end of the String.
|
|
Erase a range of code points described by the iterators [beg, end).
|
|
Erase the code point described by the given iterator.
|
|
Erase a range of code points.
|
|
Erase a single code point from the string.
|
|
Removes all data from the String.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a sub-string.
|
|
Search forwards for a given code point.
|
|
Find the first code point that is not one of a set of chars.
|
|
Find the first code point that is not one of a set of chars.
|
|
Search forwards for the first code point that does not match a given code point.
|
|
Find the first code point that is not one of a set of code points.
|
|
Find the first code point that is not one of a set of code points.
|
|
Find the first code point that is not one of a set of code points.
|
|
Find the first code point that is not one of a set of code points.
|
|
Find the first occurrence of one of a set of chars.
|
|
Find the first occurrence of one of a set of chars.
|
|
Search forwards for a given code point.
|
|
Find the first occurrence of one of a set of code points.
|
|
Find the first occurrence of one of a set of code points.
|
|
Find the first occurrence of one of a set of code points.
|
|
Find the first occurrence of one of a set of code points.
|
|
Find the last code point that is not one of a set of chars.
|
|
Find the last code point that is not one of a set of chars.
|
|
Search for the last code point that does not match a given code point.
|
|
Find the last code point that is not one of a set of code points.
|
|
Find the last code point that is not one of a set of code points.
|
|
Find the last code point that is not one of a set of code points.
|
|
Find the last code point that is not one of a set of code points.
|
|
Find the last occurrence of one of a set of chars.
|
|
Find the last occurrence of one of a set of chars.
|
|
Search for last occurrence of a given code point.
|
|
Find the last occurrence of one of a set of code points.
|
|
Find the last occurrence of one of a set of code points.
|
|
Find the last occurrence of one of a set of code points.
|
|
Find the last occurrence of one of a set of code points.
|
|
Inserts chars from the given char array at the specified position.
|
|
Inserts the given c-string at the specified position.
|
|
Inserts code points specified by the range [beg, end).
|
|
Inserts a single code point into the String.
|
|
Inserts a code point multiple times into the String.
|
|
Inserts a code point multiple times into the String.
|
|
Inserts the given utf8 encoded data at the specified position.
|
|
Inserts the given null-terminated utf8 encoded data at the specified position.
|
|
Inserts a sub-string of the given std::string object at the specified position.
|
|
Inserts the given std::string object at the specified position.
|
|
Inserts a sub-string of the given String object at the specified position.
|
|
Inserts the given String object at the specified position.
|
|
Returns the size of the String in code points.
|
|
Returns the maximum size of a String. Any operation that would result in a String that is larger than this value will throw the std::length_error exception.
|
|
Appends to the String the given c-string.
|
|
Appends a single code point to the string.
|
|
Appends to the String the null-terminated utf8 encoded data in the buffer utf8_str.
|
|
Appends the std::string std_str.
|
|
Appends the String str.
|
|
Assign to this String the given C-string.
|
|
Assigns the specified utf32 code point to this String. Result is always a String 1 code point in length.
|
|
Assign to this String the string value represented by the given null-terminated utf8 encoded data.
|
|
Assign the value of std::string std_str to this String.
|
|
Assign the value of String str to this String.
|
|
Returns the code point at the given index.
|
|
Returns the code point at the given index.
|
|
Appends a single code point to the string.
|
|
Return a constant reverse iterator that describes the beginning of the String.
|
|
Return a reverse iterator that describes the beginning of the String.
|
|
Return a constant reverse iterator that describes the end of the String.
|
|
Return a reverse iterator that describes the end of the String.
|
|
Replace the code points in the range [beg, end) with chars from the given char array.
|
|
Replace code points in the String with chars from the given char array.
|
|
Replace the code points in the range [beg, end) with the specified c-string.
|
|
Replace code points in the String with the specified c-string.
|
|
Replace the code points in the range [beg, end) with code points from the range [newBeg, newEnd).
|
|
Replace the code points in the range [beg, end) with occurrences of a given code point.
|
|
Replaces a specified range of code points with occurrences of a given code point.
|
|
Replace the code points in the range [beg, end) with the specified null-terminated utf8 encoded data.
|
|
Replace code points in the String with the specified utf8 encoded data.
|
|
Replace the code points in the range [beg, end) with the specified null-terminated utf8 encoded data.
|
|
Replace code points in the String with the specified null-terminated utf8 encoded data.
|
|
Replace code points in the String with a specified sub-string of a given std::string object.
|
|
Replace the code points in the range [beg, end) with the specified std::string object.
|
|
Replace code points in the String with the specified std::string object.
|
|
Replace code points in the String with a specified sub-string of a given String object.
|
|
Replace the code points in the range [beg, end) with the specified String object.
|
|
Replace code points in the String with the specified String object.
|
|
Specifies the amount of reserve capacity to allocate.
|
|
Resizes the String either by inserting the given utf32 code point to make it larger, or by truncating to make it smaller.
|
|
Resizes the String either by inserting default utf32 code points to make it larger, or by truncating to make it smaller.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a sub-string.
|
|
Search backwards for a given code point.
|
|
Returns the size of the String in code points.
|
|
Returns a substring of this String.
|
|
Swaps the value of this String with the given String str.
|
|
Return the number of utf8 code units required to hold an area of the String when encoded as utf8 data.
|