1
vote
1answer
126 views

lexical analysis of data structure of different delimiters

So I'm making a lexer and a parser to parse one data format to another (partly as an exercise), and I have a question: Let's say we have 3 different data types, and these data types are identified by ...
2
votes
1answer
116 views

Parse a string by Lexing.from_string

I have implemented this example, and it works well. Now, I want to read from a string instead of reading from stdin, so I change the calc.ml: let _ = try let lexbuf = Lexing.from_string "1+3" ...
0
votes
1answer
85 views

A space is needed to let line_terminator be recognized

In my lexer.mll I have declared EOS as follows: let line_feed = '\n' (* %x200A *) let carriage_return = '\r' (* %x200D *) let line_terminator = line_feed | carriage_return | carriage_return line_feed ...
2
votes
1answer
276 views

Haskell Alex - regex matches wrong string?

I'm trying to write lexer for an indentation-based grammar and I'm having trouble matching the indentation. Here's my code: { module Lexer ( main ) where import System.IO.Unsafe } %wrapper ...
1
vote
1answer
101 views

HOP::Lexer with overlapping tokens

I'm using HOP::Lexer to scan BlitzMax module source code to fetch some data from it. One particular piece of data I'm currently interested in is a module description. Currently I'm searching for a ...
5
votes
4answers
2k views

PHP Lexer and Parser Generator?

I know question Lex and Yacc in PHP was asked before but 1 year ago. Is there any new mature PHP parser generator now ? My searches drove me to the following ones, what do you think about them, any ...
0
votes
1answer
404 views

How to write a text transformer?

Suppose I have a text that I can easily parse. It consists of text and special identifiers. After parsing I get a list of tokens that correspond to text and special identifiers in the text. The ...