Parser combinators info

Posted by Jeriho on Stack Overflow See other posts from Stack Overflow or by Jeriho
Published on 2010-04-20T08:39:18Z Indexed on 2010/04/20 8:43 UTC
Read the original article Hit count: 466

Filed under:
|

I am using parsing combinators in scala If I have recursive parser:

val parser = "(?ui)(regexvalue)".r | (parser2~>value)

How can I check how many characters of input my parser consumed?

© Stack Overflow or respective owner

Related posts about scala

Related posts about parser-combinators