The R Project SVN R

Rev

Rev 86021 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 86021 Rev 87422
Line 12... Line 12...
12
find(what, mode = "any", numeric = FALSE, simple.words = TRUE)
12
find(what, mode = "any", numeric = FALSE, simple.words = TRUE)
13
}
13
}
14
\alias{apropos}
14
\alias{apropos}
15
\alias{find}
15
\alias{find}
16
\arguments{
16
\arguments{
17
  \item{what}{character string.  For \code{simple.words = FALSE}
17
  \item{what}{a character string.  For \code{find} with
18
    the name of an object; otherwise
18
    \code{simple.words = TRUE}, the name of an object; otherwise
19
    a \link{regular expression} to match object names against.}
19
    a \link{regular expression} to match object names against.}
20
  \item{where, numeric}{a logical indicating whether positions in the
20
  \item{where, numeric}{logical indicating whether positions in the
21
    search list should also be returned}
21
    search list should also be returned.}
22
  \item{ignore.case}{logical indicating if the search should be
22
  \item{ignore.case}{logical indicating if the search should be
23
    case-insensitive, \code{TRUE} by default.}
23
    case-insensitive, \code{TRUE} by default.}
24
  \item{dot_internals}{logical indicating if the search result should show
24
  \item{dot_internals}{logical indicating if the search result should show
25
    \pkg{base} internal objects, \code{FALSE} by default.}
25
    \pkg{base} internal objects, \code{FALSE} by default.}
26
  \item{mode}{character; if not \code{"any"}, only objects whose
26
  \item{mode}{a character string; if not \code{"any"}, only objects whose
27
    \code{\link{mode}} equals \code{mode} are searched.}
27
    \code{\link{mode}} equals \code{mode} are searched.}
28
  \item{simple.words}{logical; if \code{TRUE}, the \code{what} argument is
28
  \item{simple.words}{logical; if \code{TRUE}, the \code{what} argument is
29
    only searched as a whole word.}
29
    only searched as a whole word.}
30
}
30
}
31
\description{
31
\description{