A list of XsString values. More...
Related Functions | |
(Note that these are not member functions.) | |
void | XsStringArray_fromSplicedString (struct XsStringArray *thisPtr, struct XsString const *src, struct XsString const *separators) |
Splice the supplied string and put the resulting substrings in the string array. More... | |
void | XsStringArray_join (struct XsStringArray const *thisPtr, struct XsString *result, struct XsString const *separator) |
Join the string array into a single string, inserting separator between substrings. More... | |
|
related |
Splice the supplied string and put the resulting substrings in the string array.
The source string will be searched for instances of characters in separators and spliced whereever one was found. The spliced list will not include characters in separators and empty substrings will be discarded.
src | The source string to splice |
separators | A list of separator characters that will be used to splice src. |
Definition at line 102 of file xsstringarray.c.
|
related |
Join the string array into a single string, inserting separator between substrings.
result | The result of the join |
separator | The separator to insert between successive items |
Definition at line 145 of file xsstringarray.c.