

   SSpplliitt tthhee SSttrriinnggss iinn aa VVeeccttoorr

        strsplit(x,split)

   DDeessccrriippttiioonn::

        `strsplit' takes two arguments. A character vector to
        split, `x', and a character string, `split', to use as
        splits (this can also be a vector).  It returns a list
        each element of which contains the vector of splits.

   SSeeee AAllssoo::

        `paste', `nchar', `substr'

   EExxaammpplleess::

        x <- c("asfef","qwerty","yuiop[","b","stuff.blah.yech")
        #split x on the letter e
        strsplit(x,"e")

