GLib.String¶
record (struct)
A GString is an object that handles the memory management of a C string.
The emphasis of GString is on text, typically UTF-8. Crucially, the "str" member
of a GString is guaranteed to have a trailing nul character, and it is therefore
always safe to call functions such as strchr() or strdup() on it.
However, a GString can also hold arbitrary binary data, because it has a "len" member,
which includes any possible embedded nul characters in the data. Conceptually then,
GString is like a GByteArray with the addition of many convenience methods for
text, and a guaranteed nul terminator.
Constructors¶
new¶
Creates a new String, initialized with the given string.
Parameters:
init— the initial text to copy into the string, orNoneto start with an empty string
new_len¶
Creates a new String with len bytes of the init buffer.
Because a length is provided, init need not be nul-terminated,
and can contain embedded nul bytes.
Since this function does not stop at nul bytes, it is the caller's
responsibility to ensure that init has at least len addressable
bytes.
Parameters:
init— initial contents of the stringlen— length ofinitto use
new_take¶
Creates a new String, initialized with the given string.
After this call, init belongs to the String and may no longer be
modified by the caller. The memory of init has to be dynamically
allocated and will eventually be freed with free.
Parameters:
init— initial text used as the string. Ownership of the string is transferred to theString. PassingNonecreates an empty string.
sized_new¶
Creates a new String, with enough space for dfl_size
bytes. This is useful if you are going to add a lot of
text to the string and don't want it to be reallocated
too often.
Parameters:
dfl_size— the default size of the space allocated to hold the string
Methods¶
append¶
Adds a string onto the end of a String, expanding
it if necessary.
Parameters:
val— the string to append onto the end ofstring
append_c¶
Adds a byte onto the end of a String, expanding
it if necessary.
Parameters:
c— the byte to append onto the end ofstring
append_len¶
Appends len bytes of val to string.
If len is positive, val may contain embedded nuls and need
not be nul-terminated. It is the caller's responsibility to
ensure that val has at least len addressable bytes.
If len is negative, val must be nul-terminated and len
is considered to request the entire string length. This
makes String.append_len equivalent to String.append.
Parameters:
val— bytes to appendlen— number of bytes ofvalto use, or -1 for all ofval
append_unichar¶
Converts a Unicode character into UTF-8, and appends it to the string.
Parameters:
wc— a Unicode character
append_uri_escaped¶
def append_uri_escaped(self, unescaped: str, reserved_chars_allowed: str, allow_utf8: bool) -> String
Appends unescaped to string, escaping any characters that
are reserved in URIs using URI-style escape sequences.
Parameters:
unescaped— a stringreserved_chars_allowed— a string of reserved characters allowed to be used, orNoneallow_utf8— setTrueif the escaped string may include UTF8 characters
ascii_down¶
Converts all uppercase ASCII letters to lowercase ASCII letters.
ascii_up¶
Converts all lowercase ASCII letters to uppercase ASCII letters.
assign¶
Copies the bytes from a string into a String,
destroying any previous contents. It is rather like
the standard strcpy() function, except that you do not
have to worry about having enough space to copy the string.
Parameters:
rval— the string to copy intostring
copy¶
Copies the String instance and its contents.
This will preserve the allocation length of the String in the
copy.
down¶
:::warning Deprecated since 2.2 This API is deprecated. :::
Converts a String to lowercase.
equal¶
Compares two strings for equality, returning True if they are equal.
For use with HashTable.
Parameters:
v2— anotherString
erase¶
Removes len bytes from a String, starting at position pos.
The rest of the String is shifted down to fill the gap.
Parameters:
pos— the position of the content to removelen— the number of bytes to remove, or -1 to remove all following bytes
free¶
Frees the memory allocated for the String.
If free_segment is True it also frees the character data. If
it's False, the caller gains ownership of the buffer and must
free it after use with free.
Instead of passing False to this function, consider using
String.free_and_steal.
Parameters:
free_segment— ifTrue, the actual character data is freed as well
free_and_steal¶
Frees the memory allocated for the String.
The caller gains ownership of the buffer and
must free it after use with free.
free_to_bytes¶
Transfers ownership of the contents of string to a newly allocated
Bytes. The String structure itself is deallocated, and it is
therefore invalid to use string after invoking this function.
Note that while String ensures that its buffer always has a
trailing nul character (not reflected in its "len"), the returned
Bytes does not include this extra nul; i.e. it has length exactly
equal to the "len" member.
hash¶
Creates a hash code for str; for use with HashTable.
insert¶
Inserts a copy of a string into a String,
expanding it if necessary.
Parameters:
pos— the position to insert the copy of the stringval— the string to insert
insert_c¶
Inserts a byte into a String, expanding it if necessary.
Parameters:
pos— the position to insert the bytec— the byte to insert
insert_len¶
Inserts len bytes of val into string at pos.
If len is positive, val may contain embedded nuls and need
not be nul-terminated. It is the caller's responsibility to
ensure that val has at least len addressable bytes.
If len is negative, val must be nul-terminated and len
is considered to request the entire string length.
If pos is -1, bytes are inserted at the end of the string.
Parameters:
pos— position instringwhere insertion should happen, or -1 for at the endval— bytes to insertlen— number of bytes ofvalto insert, or -1 for all ofval
insert_unichar¶
Converts a Unicode character into UTF-8, and insert it into the string at the given position.
Parameters:
pos— the position at which to insert character, or -1 to append at the end of the stringwc— a Unicode character
overwrite¶
Overwrites part of a string, lengthening it if necessary.
Parameters:
pos— the position at which to start overwritingval— the string that will overwrite thestringstarting atpos
overwrite_len¶
Overwrites part of a string, lengthening it if necessary. This function will work with embedded nuls.
Parameters:
pos— the position at which to start overwritingval— the string that will overwrite thestringstarting atposlen— the number of bytes to write fromval
prepend¶
Adds a string on to the start of a String,
expanding it if necessary.
Parameters:
val— the string to prepend on the start ofstring
prepend_c¶
Adds a byte onto the start of a String,
expanding it if necessary.
Parameters:
c— the byte to prepend on the start of theString
prepend_len¶
Prepends len bytes of val to string.
If len is positive, val may contain embedded nuls and need
not be nul-terminated. It is the caller's responsibility to
ensure that val has at least len addressable bytes.
If len is negative, val must be nul-terminated and len
is considered to request the entire string length. This
makes String.prepend_len equivalent to String.prepend.
Parameters:
val— bytes to prependlen— number of bytes invalto prepend, or -1 for all ofval
prepend_unichar¶
Converts a Unicode character into UTF-8, and prepends it to the string.
Parameters:
wc— a Unicode character
replace¶
Replaces the string find with the string replace in a String up to
limit times. If the number of instances of find in the String is
less than limit, all instances are replaced. If limit is 0,
all instances of find are replaced.
If find is the empty string, since versions 2.69.1 and 2.68.4 the
replacement will be inserted no more than once per possible position
(beginning of string, end of string and between characters). This did
not work correctly in earlier versions.
If limit is zero and more than G_MAXUINT instances of find are in
the input string, they will all be replaced, but the return value will
be capped at G_MAXUINT.
Parameters:
find— the string to find instringreplace— the string to insert in place offindlimit— the maximum instances offindto replace withreplace, or0for no limit
set_size¶
Sets the length of a String. If the length is less than
the current length, the string will be truncated. If the
length is greater than the current length, the contents
of the newly added area are undefined. (However, as
always, string->str[string->len] will be a nul byte.)
Parameters:
len— the new length
truncate¶
Cuts off the end of the GString, leaving the first len bytes.
Parameters:
len— the new size ofstring
up¶
:::warning Deprecated since 2.2 This API is deprecated. :::
Converts a String to uppercase.