

   CCoouunntt tthhee NNuummbbeerr ooff CChhaarraacctteerrss

        nchar(x)

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

        `nchar' takes a character vector as an argument and
        returns a vector whose elements contain the number of
        characters in the corresponding element of `x'.  It
        only accepts character vectors as arguments if you want
        to operate on other objects passing them through
        `deparse' first will be required.

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

        `strwidth' giving width of strings for plotting;
        `paste', `substr', `strsplit'

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

        x<-c("asfef","qwerty","yuiop[","b","stuff.blah.yech")
        nchar(x)
        # 5  6  6  1 15

        nchar(deparse(mean))
        # 23  1 16 45 11 64  2 17 50 43  2 17  1

