String[] a;
a = string.spit(",");
// for example:The string "boo:and:foo",
a = string.spit(",");
// for example:The string "boo:and:foo",
// Regex | Result |
---|---|
: | { "boo", "and", "foo" } |
o | { "b", "", ":and:f" } |