Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GLibで部分文字列を取得する関数はありますか?
何かのようなもの
gchar *getSlice(const gchar *text, gint startIndex);
あなたはただ行うことができます:
gchar *s = &text[start_index];
部分文字列のコピーが必要な場合は、
gchar *s = g_strdup(&text[start_index]);
後者の場合、使い終わったら忘れずに文字列を解放してください。