Converts any delimiter characters in string to new_delimiter.
Any characters in string which are found in delimiters are
changed to the new_delimiter character. Modifies string in place,
and returns string itself, not a copy.
The return value is to allow nesting such as:
g_ascii_strup (g_strdelimit (str, "abc", '?'))
In order to modify a copy, you may use GLib.strdup:
Converts any delimiter characters in
stringtonew_delimiter.Any characters in
stringwhich are found indelimitersare changed to thenew_delimitercharacter. Modifiesstringin place, and returnsstringitself, not a copy.The return value is to allow nesting such as:
In order to modify a copy, you may use GLib.strdup: