parseDocument.RspParser {R.rsp} | R Documentation |
Parse an RSP string into and RSP document
Description
Parse an RSP string into and RSP document with RSP comments dropped.
Usage
## S3 method for class 'RspParser'
parseDocument(parser, object, envir=parent.frame(), ...,
until=c("*", "end", "expressions", "directives", "comments"),
as=c("RspDocument", "RspString"), verbose=FALSE)
Arguments
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 debugging. |
as |
Specifies in what format the parsed RSP document should be returned. |
verbose |
See |
Value
Returns a RspDocument
(when as = "RspDocument"
; default)
or RspString
(when as = "RspString"
).
Author(s)
Henrik Bengtsson
See Also
For more information see RspParser
.
[Package R.rsp version 0.45.0 Index]