parse                  package:base                  R Documentation

_P_a_r_s_e _E_x_p_r_e_s_s_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     'parse' returns the parsed but unevaluated expressions in a list.

_U_s_a_g_e:

     parse(file = "", n = NULL, text = NULL, prompt = "?")

_A_r_g_u_m_e_n_t_s:

    file: a connection, or a character string giving the name of a file
          or a URL to read the expressions from. If 'file' is '""' and
          'text' is missing or 'NULL' then input is taken from the
          console.

       n: integer (or coerced to integer).  The maximum number of
          expressions to parse.  If 'n' is 'NULL' or negative or 'NA'
          the input is parsed in its entirety.

    text: character vector.  The text to parse.  Elements are treated
          as if they were lines of a file.  Other R objects will be
          coerced to character (without method dispatch) if possible.

  prompt: the prompt to print when parsing from the keyboard. 'NULL'
          means to use R's prompt, 'getOption("prompt")'.

_D_e_t_a_i_l_s:

     If 'text' has length greater than zero (after coercion) it is used
     in preference to 'file'.

     All versions of R accept input from a connection with end of line
     marked by LF (as used on Unix), CRLF (as used on DOS/Windows) or
     CR (as used on classic MacOS).  The final line can be incomplete,
     that is missing the final EOL marker.

     See 'source' for the limits on the size of functions that can be
     parsed (by default).  There is also a limit of 8192 bytes on the
     size of strings which can be parsed.

     When input is taken from the console, 'n = NULL' is equivalent to
     'n = 1', and 'n < 0' will read until an EOF character is read.

_V_a_l_u_e:

     An object of type '"expression"', with up to 'n' elements if
     specified as a non-negative integer.

     A syntax error (including an incomplete expression) will throw an
     error.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

_S_e_e _A_l_s_o:

     'scan', 'source', 'eval', 'deparse'.

_E_x_a_m_p_l_e_s:

     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")

