TITLE(strsplit @@ Split the Strings in a Vector)
USAGE(
strsplit(x,split)
)
ALIAS(strsplit)
DESCRIPTION(
LANG(strsplit) takes two arguments. A character vector to split, LANG(x), and a
character string, LANG(split), to use as splits (this can also be a vector). 
It returns a list each element of which contains the vector of splits.
)
SEEALSO(
LANG(LINK(paste)), LANG(LINK(nchar)), LANG(LINK(substr))
)
EXAMPLES(
x <- c("asfef","qwerty","yuiop[","b","stuff.blah.yech")
#split x on the letter e
strsplit(x,"e")
)
