

   charmatch {base}                             R Documentation

   PPaarrttiiaall SSttrriinngg MMaattcchhiinngg

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

        `charmatch' seeks matches for the elements of its first
        argument among those of its second.

   UUssaaggee::

        charmatch(x, table, nomatch = NA)

   AArrgguummeennttss::

          x: the values to be matched.

      table: the values to be matched against.

    nomatch: the value returned at non-matching positions.

   DDeettaaiillss::

        If there is a unique match then the index of the match-
        ing value is returned; if multiple matches are found
        then `0' is returned and if no match is found then `NA'
        is returned.

        This function is based on a C function written by Terry
        Therneau.

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

        `match' `pmatch'.

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

        charmatch("", "")                             # returns 1
        charmatch("m",   c("mean", "median", "mode")) # returns 0
        charmatch("med", c("mean", "median", "mode")) # returns 2

