// var text = "a.b.c";
// text.split("a.b.c")
,
// text.split(".")
a,b,c
// text.split("")
a,.,b,.,c
// text.split()
a.b.c
// text.split(regex) - unimplemented
