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: 470
scala
|parser-combinators
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