| parse.RspParser {R.rsp} | R Documentation |
Parses the RSP string with RSP comments dropped.
## S3 method for class 'RspParser'
parse(parser, object, envir=parent.frame(), ..., until=c("*", "end", "expressions",
"directives", "comments"), as=c("RspDocument", "RspString"), verbose=FALSE)
object |
An |
envir |
The |
... |
Passed to the processor in each step. |
until |
Specifies how far the parse should proceed, which is useful for troubleshooting and rebugging. |
as |
Specifies in what format the parsed RSP document should be returned. |
verbose |
See |
Returns a RspDocument (when as = "RspDocument"; default)
or RspString (when as = "RspString").
Henrik Bengtsson
For more information see RspParser.