
9 Jan
2005
9 Jan
'05
8:24 p.m.
On Sun, 09 Jan 2005 10:59:06 -0800, Bryce Harrington wrote:
(01:20:33) *bryce:* to delete the first N chars off the start of a string s, is it ok to do s += N?
For a UTF-8 string you can put it in a Glib::ustring then use erase() to delete the first N characters.
To get character N use Glib::ustring[]. If you have a UTF-8 char * but not a ustring and don't want to make one, the raw glib equivalents work as well.
I dunno about fgets and sscanf but if they don't make any assumptions about 1 character == 1 byte they're prolly safe to use.
thanks -mike