LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
|
A string buffer implements a mutable sequence of characters. More...
#include <ustrbuf.hxx>
Public Member Functions | |
OUStringBuffer () | |
Constructs a string buffer with no characters in it and an initial capacity of 16 characters. More... | |
OUStringBuffer (const OUStringBuffer &value) | |
Allocates a new string buffer that contains the same sequence of characters as the string buffer argument. More... | |
OUStringBuffer (sal_Int32 length) | |
Constructs a string buffer with no characters in it and an initial capacity specified by the length argument. More... | |
OUStringBuffer (const OUString &value) | |
Constructs a string buffer so that it represents the same sequence of characters as the string argument. More... | |
template<typename T > | |
OUStringBuffer (T &literal, typename libreoffice_internal::ConstCharArrayDetector< T, libreoffice_internal::Dummy >::Type=libreoffice_internal::Dummy()) | |
OUStringBuffer & | operator= (const OUStringBuffer &value) |
Assign to this a copy of value. More... | |
OUStringBuffer & | operator= (OUString const &string) |
Assign from a string. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OUStringBuffer & >::Type | operator= (T &literal) |
Assign from a string literal. More... | |
~OUStringBuffer () | |
Release the string data. More... | |
SAL_WARN_UNUSED_RESULT OUString | makeStringAndClear () |
Fill the string data in the new string and clear the buffer. More... | |
sal_Int32 | getLength () const |
Returns the length (character count) of this string buffer. More... | |
bool | isEmpty () const |
Checks if a string buffer is empty. More... | |
sal_Int32 | getCapacity () const |
Returns the current capacity of the String buffer. More... | |
void | ensureCapacity (sal_Int32 minimumCapacity) |
Ensures that the capacity of the buffer is at least equal to the specified minimum. More... | |
void | setLength (sal_Int32 newLength) |
Sets the length of this String buffer. More... | |
sal_Unicode | charAt (sal_Int32 index) const |
Returns the character at a specific index in this string buffer. More... | |
OUStringBuffer & | setCharAt (sal_Int32 index, sal_Unicode ch) |
The character at the specified index of this string buffer is set to ch . More... | |
const sal_Unicode * | getStr () const SAL_RETURNS_NONNULL |
Return a null terminated unicode character array. More... | |
sal_Unicode & | operator[] (sal_Int32 index) |
Access to individual characters. More... | |
const sal_Unicode & | operator[] (sal_Int32 index) const |
Access to individual characters. More... | |
OUString | toString () const |
Return an OUString instance reflecting the current content of this OUStringBuffer. More... | |
OUStringBuffer & | append (const OUString &str) |
Appends the string to this string buffer. More... | |
OUStringBuffer & | append (const OUStringBuffer &str) |
Appends the content of a stringbuffer to this string buffer. More... | |
OUStringBuffer & | append (const sal_Unicode *str) |
Appends the string representation of the char array argument to this string buffer. More... | |
OUStringBuffer & | append (const sal_Unicode *str, sal_Int32 len) |
Appends the string representation of the char array argument to this string buffer. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OUStringBuffer &>::Type | append (T &literal) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
OUStringBuffer & | appendAscii (const char *str) |
Appends a 8-Bit ASCII character string to this string buffer. More... | |
OUStringBuffer & | appendAscii (const char *str, sal_Int32 len) |
Appends a 8-Bit ASCII character string to this string buffer. More... | |
OUStringBuffer & | append (bool b) |
Appends the string representation of the bool argument to the string buffer. More... | |
OUStringBuffer & | append (rtl_uString *str) |
More... | |
OUStringBuffer & | append (sal_Bool b) |
Appends the string representation of the sal_Bool argument to the string buffer. More... | |
OUStringBuffer & | append (char c) |
Appends the string representation of the ASCII char argument to this string buffer. More... | |
OUStringBuffer & | append (sal_Unicode c) |
Appends the string representation of the char argument to this string buffer. More... | |
OUStringBuffer & | append (sal_Int32 i, sal_Int16 radix=10) |
Appends the string representation of the sal_Int32 argument to this string buffer. More... | |
OUStringBuffer & | append (sal_Int64 l, sal_Int16 radix=10) |
Appends the string representation of the long argument to this string buffer. More... | |
OUStringBuffer & | append (float f) |
Appends the string representation of the float argument to this string buffer. More... | |
OUStringBuffer & | append (double d) |
Appends the string representation of the double argument to this string buffer. More... | |
OUStringBuffer & | appendUtf32 (sal_uInt32 c) |
Appends a single UTF-32 character to this string buffer. More... | |
sal_Unicode * | appendUninitialized (sal_Int32 length) SAL_RETURNS_NONNULL |
Unsafe way to make space for a fixed amount of characters to be appended into this OUStringBuffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, const OUString &str) |
Inserts the string into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, const sal_Unicode *str) |
Inserts the string representation of the char array argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, const sal_Unicode *str, sal_Int32 len) |
Inserts the string representation of the char array argument into this string buffer. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OUStringBuffer &>::Type | insert (sal_Int32 offset, T &literal) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
OUStringBuffer & | insert (sal_Int32 offset, sal_Bool b) |
Inserts the string representation of the sal_Bool argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, bool b) |
Inserts the string representation of the bool argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, char c) |
Inserts the string representation of the char argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, sal_Unicode c) |
Inserts the string representation of the char argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, sal_Int32 i, sal_Int16 radix=10) |
Inserts the string representation of the second sal_Int32 argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, sal_Int64 l, sal_Int16 radix=10) |
Inserts the string representation of the long argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, float f) |
Inserts the string representation of the float argument into this string buffer. More... | |
OUStringBuffer & | insert (sal_Int32 offset, double d) |
Inserts the string representation of the double argument into this string buffer. More... | |
OUStringBuffer & | insertUtf32 (sal_Int32 offset, sal_uInt32 c) |
Inserts a single UTF-32 character into this string buffer. More... | |
OUStringBuffer & | remove (sal_Int32 start, sal_Int32 len) |
Removes the characters in a substring of this sequence. More... | |
OUStringBuffer & | truncate (sal_Int32 start=0) |
Removes the tail of a string buffer start at the indicate position. More... | |
OUStringBuffer & | replace (sal_Unicode oldChar, sal_Unicode newChar) |
Replace all occurrences of oldChar in this string buffer with newChar. More... | |
void | accessInternals (rtl_uString ***pInternalData, sal_Int32 **pInternalCapacity) |
Allows access to the internal data of this OUStringBuffer, for effective manipulation. More... | |
sal_Int32 | indexOf (sal_Unicode ch, sal_Int32 fromIndex=0) const |
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index. More... | |
sal_Int32 | lastIndexOf (sal_Unicode ch) const |
Returns the index within this string of the last occurrence of the specified character, searching backward starting at the end. More... | |
sal_Int32 | lastIndexOf (sal_Unicode ch, sal_Int32 fromIndex) const |
Returns the index within this string of the last occurrence of the specified character, searching backward starting before the specified index. More... | |
sal_Int32 | indexOf (const OUString &str, sal_Int32 fromIndex=0) const |
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, sal_Int32 >::Type | indexOf (T &literal, sal_Int32 fromIndex=0) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
sal_Int32 | lastIndexOf (const OUString &str) const |
Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the end. More... | |
sal_Int32 | lastIndexOf (const OUString &str, sal_Int32 fromIndex) const |
Returns the index within this string of the last occurrence of the specified substring, searching backward starting before the specified index. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, sal_Int32 >::Type | lastIndexOf (T &literal) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
sal_Int32 | stripStart (sal_Unicode c=' ') |
Strip the given character from the start of the buffer. More... | |
sal_Int32 | stripEnd (sal_Unicode c=' ') |
Strip the given character from the end of the buffer. More... | |
sal_Int32 | strip (sal_Unicode c=' ') |
Strip the given character from the both end of the buffer. More... | |
OUStringBuffer | copy (sal_Int32 beginIndex) const |
Returns a new string buffer that is a substring of this string. More... | |
OUStringBuffer | copy (sal_Int32 beginIndex, sal_Int32 count) const |
Returns a new string buffer that is a substring of this string. More... | |
Friends | |
class | OUString |
A string buffer implements a mutable sequence of characters.
|
inline |
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
|
inline |
Allocates a new string buffer that contains the same sequence of characters as the string buffer argument.
value | a OUStringBuffer . |
|
inlineexplicit |
Constructs a string buffer with no characters in it and an initial capacity specified by the length
argument.
length | the initial capacity. |
|
inline |
Constructs a string buffer so that it represents the same sequence of characters as the string argument.
The initial capacity of the string buffer is 16
plus the length of the string argument.
value | the initial contents of the buffer. |
|
inline |
|
inline |
Release the string data.
|
inline |
Allows access to the internal data of this OUStringBuffer, for effective manipulation.
This method should be used with care. After you have called this method, you may use the returned pInternalData or pInternalCapacity only as long as you make no other method call on this OUStringBuffer.
pInternalData | This output parameter receives a pointer to the internal data (rtl_uString pointer). pInternalData itself must not be null. |
pInternalCapacity | This output parameter receives a pointer to the internal capacity. pInternalCapacity itself must not be null. |
|
inline |
Appends the string to this string buffer.
The characters of the OUString
argument are appended, in order, to the contents of this string buffer, increasing the length of this string buffer by the length of the argument.
str | a string. |
|
inline |
Appends the content of a stringbuffer to this string buffer.
The characters of the OUStringBuffer
argument are appended, in order, to the contents of this string buffer, increasing the length of this string buffer by the length of the argument.
str | a string. |
|
inline |
Appends the string representation of the char
array argument to this string buffer.
The characters of the array argument are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the length of the argument.
str | the characters to be appended. |
|
inline |
Appends the string representation of the char
array argument to this string buffer.
Characters of the character array str
are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the value of len
.
str | the characters to be appended; must be non-null, and must point to at least len characters |
len | the number of characters to append; must be non-negative |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Appends the string representation of the bool
argument to the string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
b | a bool . |
|
inline |
|
inline |
Appends the string representation of the sal_Bool
argument to the string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
b | a sal_Bool . |
|
inline |
Appends the string representation of the ASCII char
argument to this string buffer.
The argument is appended to the contents of this string buffer. The length of this string buffer increases by 1
.
c | an ASCII char . |
|
inline |
Appends the string representation of the char
argument to this string buffer.
The argument is appended to the contents of this string buffer. The length of this string buffer increases by 1
.
c | a char . |
|
inline |
Appends the string representation of the sal_Int32
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
i | an sal_Int32 . |
radix | the radix |
|
inline |
Appends the string representation of the long
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
l | a long . |
radix | the radix |
|
inline |
Appends the string representation of the float
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
f | a float . |
|
inline |
Appends the string representation of the double
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
d | a double . |
|
inline |
Appends a 8-Bit ASCII character string to this string buffer.
Since this method is optimized for performance. the ASCII character values are not converted in any way. The caller has to make sure that all ASCII characters are in the allowed range between 0 and 127. The ASCII string must be NULL-terminated.
The characters of the array argument are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the length of the argument.
str | the 8-Bit ASCII characters to be appended. |
|
inline |
Appends a 8-Bit ASCII character string to this string buffer.
Since this method is optimized for performance. the ASCII character values are not converted in any way. The caller has to make sure that all ASCII characters are in the allowed range between 0 and 127.
Characters of the character array str
are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the value of len
.
str | the 8-Bit ASCII characters to be appended; must be non-null, and must point to at least len characters |
len | the number of characters to append; must be non-negative |
|
inline |
Unsafe way to make space for a fixed amount of characters to be appended into this OUStringBuffer.
A call to this function must immediately be followed by code that completely fills the uninitialized block pointed to by the return value.
length | the length of the uninitialized block of sal_Unicode entities; must be non-negative |
|
inline |
Appends a single UTF-32 character to this string buffer.
The single UTF-32 character will be represented within the string buffer as either one or two UTF-16 code units.
c | a well-formed UTF-32 code unit (that is, a value in the range 0 –0x10FFFF , but excluding 0xD800 –0xDFFF ) |
|
inline |
Returns the character at a specific index in this string buffer.
The first character of a string buffer is at index 0
, the next at index 1
, and so on, for array indexing.
The index argument must be greater than or equal to 0
, and less than the length of this string buffer.
index | the index of the desired character. |
|
inline |
Returns a new string buffer that is a substring of this string.
The substring begins at the specified beginIndex. If beginIndex is negative or be greater than the length of this string, behaviour is undefined.
beginIndex | the beginning index, inclusive. |
|
inline |
Returns a new string buffer that is a substring of this string.
The substring begins at the specified beginIndex and contains count characters. If either beginIndex or count are negative, or beginIndex + count are greater than the length of this string then behaviour is undefined.
beginIndex | the beginning index, inclusive. |
count | the number of characters. |
|
inline |
Ensures that the capacity of the buffer is at least equal to the specified minimum.
The new capacity will be at least as large as the maximum of the current length (so that no contents of the buffer is destroyed) and the given minimumCapacity. If the given minimumCapacity is negative, nothing is changed.
minimumCapacity | the minimum desired capacity. |
|
inline |
Returns the current capacity of the String buffer.
The capacity is the amount of storage available for newly inserted characters. The real buffer size is 2 bytes longer, because all strings are 0 terminated.
|
inline |
Returns the length (character count) of this string buffer.
|
inline |
Return a null terminated unicode character array.
|
inline |
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
ch | character to be located. |
fromIndex | the index to start the search from. The index must be greater or equal than 0 and less or equal as the string length. |
|
inline |
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
If str doesn't include any character, always -1 is returned. This is also the case, if both strings are empty.
str | the substring to search for. |
fromIndex | the index to start the search from. |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Inserts the string into this string buffer.
The characters of the String
argument are inserted, in order, into this string buffer at the indicated offset. The length of this string buffer is increased by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a string. |
|
inline |
Inserts the string representation of the char
array argument into this string buffer.
The characters of the array argument are inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a character array. |
|
inline |
Inserts the string representation of the char
array argument into this string buffer.
The characters of the array argument are inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a character array. |
len | the number of characters to append. |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Inserts the string representation of the sal_Bool
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
b | a sal_Bool . |
|
inline |
Inserts the string representation of the bool
argument into this string buffer.
The second argument is converted to a string as if by the method OUString::boolean
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
b | a bool . |
|
inline |
Inserts the string representation of the char
argument into this string buffer.
The second argument is inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by one.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
c | a char . |
|
inline |
Inserts the string representation of the char
argument into this string buffer.
The second argument is inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by one.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
c | a char . |
|
inline |
Inserts the string representation of the second sal_Int32
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
i | an sal_Int32 . |
radix | the radix. |
StringIndexOutOfBoundsException | if the offset is invalid. |
|
inline |
Inserts the string representation of the long
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
l | a long . |
radix | the radix. |
StringIndexOutOfBoundsException | if the offset is invalid. |
|
inline |
Inserts the string representation of the float
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
f | a float . |
StringIndexOutOfBoundsException | if the offset is invalid. |
|
inline |
Inserts the string representation of the double
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
d | a double . |
StringIndexOutOfBoundsException | if the offset is invalid. |
|
inline |
Inserts a single UTF-32 character into this string buffer.
The single UTF-32 character will be represented within the string buffer as either one or two UTF-16 code units.
offset | the offset into this string buffer (from zero to the length of this string buffer, inclusive) |
c | a well-formed UTF-32 code unit (that is, a value in the range 0 –0x10FFFF , but excluding 0xD800 –0xDFFF ) |
|
inline |
Checks if a string buffer is empty.
|
inline |
Returns the index within this string of the last occurrence of the specified character, searching backward starting at the end.
ch | character to be located. |
|
inline |
Returns the index within this string of the last occurrence of the specified character, searching backward starting before the specified index.
ch | character to be located. |
fromIndex | the index before which to start the search. |
|
inline |
Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the end.
The returned index indicates the starting index of the substring in this string. If str doesn't include any character, always -1 is returned. This is also the case, if both strings are empty.
str | the substring to search for. |
|
inline |
Returns the index within this string of the last occurrence of the specified substring, searching backward starting before the specified index.
The returned index indicates the starting index of the substring in this string. If str doesn't include any character, always -1 is returned. This is also the case, if both strings are empty.
str | the substring to search for. |
fromIndex | the index before which to start the search. |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Fill the string data in the new string and clear the buffer.
This method is more efficient than the constructor of the string. It does not copy the buffer.
|
inline |
Assign to this a copy of value.
|
inline |
Assign from a string.
|
inline |
Assign from a string literal.
|
inline |
Access to individual characters.
index | must be non-negative and less than length. |
|
inline |
Access to individual characters.
index | must be non-negative and less than length. |
|
inline |
Removes the characters in a substring of this sequence.
The substring begins at the specified start
and is len
characters long.
start must be >= 0 && <= This->length
start | The beginning index, inclusive |
len | The substring length |
|
inline |
Replace all occurrences of oldChar in this string buffer with newChar.
oldChar | the old character. |
newChar | the new character. |
|
inline |
The character at the specified index of this string buffer is set to ch
.
The index argument must be greater than or equal to 0
, and less than the length of this string buffer.
index | the index of the character to modify. |
ch | the new character. |
|
inline |
Sets the length of this String buffer.
If the newLength
argument is less than the current length of the string buffer, the string buffer is truncated to contain exactly the number of characters given by the newLength
argument.
If the newLength
argument is greater than or equal to the current length, sufficient null characters ('\u0000'
) are appended to the string buffer so that length becomes the newLength
argument.
The newLength
argument must be greater than or equal to 0
.
newLength | the new length of the buffer. |
|
inline |
Strip the given character from the both end of the buffer.
c | the character to strip |
|
inline |
Strip the given character from the end of the buffer.
c | the character to strip |
|
inline |
Strip the given character from the start of the buffer.
c | the character to strip |
|
inline |
Return an OUString instance reflecting the current content of this OUStringBuffer.
|
inline |
Removes the tail of a string buffer start at the indicate position.
start must be >= 0 && <= This->length
start | The beginning index, inclusive. default to 0 |
|
friend |