Rev 13983 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{parse}\title{Parse Expressions}\usage{parse(file = "", n = NULL, text = NULL, prompt = NULL, white = FALSE)}\alias{parse}\arguments{\item{file}{a connection, or a character string giving the name of afile or a URL to read the expressions from.If \code{file} is \code{""} and \code{text} is missing or \code{NULL}then input is taken from the console.}\item{n}{the number of statements to parse. If \code{n} is negativethe file is parsed in its entirety.}\item{text}{character. The text to parse, quoted.}\item{prompt}{the prompt to print when parsing from the keyboard. Thedefault, \code{NULL}, is to use \R's prompt, \code{options("prompt")[[1]]}.}\item{white}{if \code{TRUE} then any white space separates expressionsotherwise only newlines or semicolons do.}}\description{\code{parse} returns the parsed but unevaluated expressions in alist. Each element of the list is of mode \code{expression}.}\seealso{\code{\link{scan}}, \code{\link{source}}, \code{\link{eval}},\code{\link{deparse}}.}\details{All versions of \R accept input from a connection with end of linemarked by LF (as used on Unix), CRLF (as used on DOS/Windows)or CR (as used on Mac). The final line can be incomplete, thatis missing the final EOL marker.}\examples{cat("x <- c(1,4)\n x ^ 3 -10 ; outer(1:7,5:9)\n", file="xyz.Rdmped")# parse 3 statements from the file "xyz.Rdmped"parse(file = "xyz.Rdmped", n = 3)unlink("xyz.Rdmped")}\keyword{file}\keyword{programming}\keyword{connection}