#include "MString.h"
#include "lstring.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
Compounds | |
class | StringInner |
Functions | |
int | used (StringInner *x) |
simple_stack<String>* | split (const char *x,char separator) |
Split a string into a stack of elements, separated by a separator. More... | |
Variables | |
const String | emptyString |
|
Split a string into a stack of elements, separated by a separator.
x | - the string to split up |
separator | - the separator NOTE: repeated separators will produce an empty string. e.g. split("a b",' ') produces "a","","b" as output. |
|
|