Method
GLibStringerase
Declaration [src]
GString*
g_string_erase (
  GString* string,
  gssize pos,
  gssize len
)
Description [src]
Removes len bytes from a GString, starting at position pos.
The rest of the GString is shifted down to fill the gap.
Parameters
- pos
- 
            Type: gssizeThe position of the content to remove. 
- len
- 
            Type: gssizeThe number of bytes to remove, or -1 to remove all following bytes. 
Return value
Type: GString
string.
| The returned data is owned by the instance. |