numberFloat {qmrparser} | R Documentation |
Floating-point number token.
Description
Recognises a floating-point number, i.e., an integer with a decimal part. One of them (either integer or decimal part) must be present.
Usage
numberFloat(action = function(s) list(type="numberFloat",value=s),
error = function(p) list(type="numberFloat",pos =p))
Arguments
action |
Function to be executed if recognition succeeds. Character stream making up the token is passed as parameter to this function |
error |
Function to be executed if recognition does not succeed. Position of |
Value
Anonymous function, returning a list.
function(stream)
–> list(status,node,stream)
From input parameters, an anonymous function is defined. This function admits just one parameter, stream, with type streamParser
, and returns a three-field list:
status
"ok" or "fail"
node
With
action
orerror
function output, depending on the casestream
With information about the input, after success or failure in recognition
Examples
# fail
stream <- streamParserFromString("Hello world")
( numberFloat()(stream) )[c("status","node")]
# ok
stream <- streamParserFromString("-456.74")
( numberFloat()(stream) )[c("status","node")]