| parseText {svMisc} | R Documentation |
Parse R instructions provided as a string and return the expression if it
is correct, or an object of class 'try-error' if it is an incorrect code, or
NA if the (last) instruction is incomplete.
parseText(text, firstline = 1, srcfilename = NULL, encoding = "unknown")
text |
the character string vector to parse into an R expression. |
firstline |
the index of first line being parsed in the file. If this
is larger than |
srcfilename |
a character string with the name of the source file. |
encoding |
encoding of |
Returns an expression with the parsed code or NA if the last
instruction is correct but incomplete, or an object of class'try-error' with
the error message if the code is incorrect.
On the contrary to parse(), parseText() recovers from incorrect
code and also detects incomplete code. It is also easier to use in case you
pass a character string to it, because you don't have to name the argument
explicitly (text = ....).
Philippe Grosjean (phgrosjean@sciviews.org)
captureAll, sourceClipboard,
parse
parseText('1+1')
parseText('1+1; log(10)')
parseText(c('1+1', 'log(10)'))
## Incomplete instruction
parseText('log(')
## Incomplete strings
parseText('text <- "some string')
parseText("text <- 'some string")
## Incomplete names (don't write backtick quoted names on several lines!)
## ...but just in case
parseText('`myvar')
## Wrong instruction
parseText('log)')