Tagged Questions

Lex is a computer program that generates lexical analyzers ("scanners" or "lexers"). Lex is commonly used with the yacc parser generator.

learn more… | top users | synonyms

20
votes
4answers
2k views

Is there a good Emacs mode or method for lex/flex/yacc/bison files?

Editing lex or yacc files with Emacs is a nuisance: if I use C mode the indenting goes wrong, and if I don't use C mode I can't use indenting. Does anyone have a trick, a method, or an editing mode to ...
20
votes
6answers
11k views

Excellent online tutorial for lex and yacc

Could somebody post a link to some excellent tutorials for lex and yacc?
18
votes
6answers
3k views

Resources for lexing, tokenising and parsing in python

Can people point me to resources on lexing, parsing and tokenising with Python? I'm doing a little hacking on an open source project (hotwire) and wanted to do a few changes to the code that lexes, ...
17
votes
14answers
4k views

Good tools for creating a C/C++ parser/analyzer

What are some good tools for getting a quick start for parsing and analyzing C/C++ code? In particular, I'm looking for open source tools that handle the C/C++ preprocessor and language. Preferably, ...
13
votes
12answers
1k views

Parsing, where can I learn about it

I've been given a job of 'translating' one language into another. The source is too flexible (complex) for a simple line by line approach with regex. Where can I go to learn more about lexical ...
12
votes
3answers
2k views

Lex and Yacc in PHP

Is there an implementation of Lex and Yacc in PHP? If not, can anyone suggest a lexical analyser and parser generator (ie, anything like Lex and Yacc) that will create PHP code. I'm not too worried ...
11
votes
6answers
1k views

Is there a better (more modern) tool than lex/flex for generating a tokenizer for C++?

I recent added source file parsing to an existing tool that generated output files from complex command line arguments. The command line arguments got to be so complex that we started allowing them ...
11
votes
2answers
3k views

String input to flex lexer

I want to create a read-eval-print loop using flex/bison parser. Trouble is, the flex generated lexer wants input of type FILE* and i would like it to be char*. Is there anyway to do this? One ...
9
votes
6answers
3k views

How to compile LEX/YACC files on Windows?

I'm having Lex and YACC files to parse my files (.l file and .y file) How to compile those files and how to make equivalent .c file for this Which tool i've to for this. I'm using windows 7 , i've ...
9
votes
4answers
5k views

What is the difference between Flex/Lex and Yacc/Bison?

What is the difference between Flex & Lex and Yacc & Bison. I searched the Internet wildly and I didn't find any solid answer. Can I install pure Lex and Yacc on Ubuntu, or I can install only ...
8
votes
3answers
1k views

Looking for a Java grammar in lex/yacc format

Does anyone know an online repository for lex/yacc format grammars? I'm looking for a Java grammar to make a quicky sourcecode converter. Thank you! edit: I'm preferably looking for lex/yacc because ...
8
votes
1answer
4k views

Simple Flex/Bison C++

I already looked for my answer but I didn't get any quick response for a simple example. I want to compile a flex/bison scanner+parser using g++ just because I want to use C++ classes to create AST ...
7
votes
2answers
214 views

How can I implement #include constructs with Flex and YACC?

During parsing, if I encounter a include token I want to instruct YACC to open the file specified as input and to begin parsing this. Once this parsing is finished, I want to instruct YACC to return ...
6
votes
2answers
220 views

REPL for interpreter using Flex/Bison

I've written an interpreter for a C-like language, using Flex and Bison for the scanner/parser. It's working fine when executing full program files. Now I'm trying implement a REPL in the ...
6
votes
2answers
884 views

Haskell parsing tools - yacc:lex :: happy:?

So, it seems like Happy is a robust replacement for yacc in Haskell. Is there an equally robust lexer generator to replace lex/flex?
5
votes
1answer
77 views

What does the ? mean in the tokenization section of the W3C CSS specification?

Ever since my awful experience with cssparser, I have set myself the task of implementing a CSS parser in Java using Parboiled. I already have all color specification covered, but of course I need all ...
5
votes
4answers
248 views

Parsing source code

I need to parse the source code of different files, each written in a different language, and I would like to do this using C. To do that, I was thinking of using yacc / lex, but I find them very ...
5
votes
3answers
326 views

Parsing: library functions, FSM, explode() or lex/yacc?

When I have to parse text (e.g. config files or other rather simple/descriptive languages), there are several solutions that come to my mind: using library functions, e.g. strtok(), sscanf() a ...
5
votes
2answers
239 views

When is it practical to use a parser generator?

I'm writing a simple text-template language for a web application I'm writing (think google's ctemplate). When finished, it'll feature only a small number of possible actions, simple stuff like ...
5
votes
2answers
1k views

What is the difference between lex/yacc and fslex/fsyacc?

I'm learning F# because I'd like to write a lexer and parser. I have a tiny bit of experience with this sort of processing but really need to learn it properly as well as F#. When learning the ...
5
votes
3answers
4k views

Regular expression for a string literal in flex/lex

I'm experimenting to learn flex and would like to match string literals. My code currently looks like: "\""([^\n\"\\]*(\\[.\n])*)*"\"" {/*matches string-literal*/;} I've been struggling with ...
5
votes
4answers
751 views

What does the “yy” in lex.yy.c stand for?

What does the "yy" in lex.yy.c stand for?
4
votes
1answer
53 views

Emacs TAGS table is confused by #line directive in lex/yacc files

I am trying to generate TAGS tables using etags for a large software project. The TAGS file ends up having entries to non-existent files at top level instead of the existent ones in a sub-directory ...
4
votes
2answers
173 views

Semantic Phase of compiler

I am trying to make semantic phase for c compiler using lex and yacc. Right now the problem is if I have multiple errors in the c program, it stops after the 1st. What can I do?
4
votes
9answers
968 views

Emulation of lex like functionality in Perl or Python

Here's the deal. Is there a way to have strings tokenized in a line based on multiple regexes? One example: I have to get all href tags, their corresponding text and some other text based on a ...
3
votes
1answer
43 views

Lex - recognizing operators as tokens

I am working on learning lex and the turtle language I am having problems getting lex to recognize operators as tokens + , < , = I have them stored in a file I have tried doing it this way \+ or ...
3
votes
2answers
69 views

YACC|BISON :How do I manipulate parse tree?

The goal of my application is to validate an sql code and generate,in the mean time, from that code a formatted one with some modification.For example this where clause : where e.student_name= ...
3
votes
1answer
108 views

Is it possible to set priorities for rules to avoid the “longest-earliest” matching pattern?

Another simple question : is there any way to tell flex to prefer a rule that matches a short thing over a rule that matches a longer thing ? I can't find any good documentation about that. Here is ...
3
votes
3answers
136 views

Using lex generated source code in another file

i would like to use the code generated by lex in another code that i have , but all the examples that i have seen is embedding the main function inside the lex file not the opposite. is it possible ...
3
votes
1answer
89 views

Build compiler Object Oriented

I'm currently working on a project for my class. I'm building a compiler with Flex (lex) and Bison (YACC) and C. I have done just a little bit of semantic an syntax analysis but i have been thinking ...
3
votes
1answer
54 views

solaris lex error

Am deploying a lex/yacc solution trying this grammar. The problem comes when i want to compile .lex file using this command: lex -t "file.lex" I get this error:Error: Parse tree too big Try using %e ...
3
votes
1answer
64 views

ply lexmatch regular expression has different groups than a usual re

I am using ply and have noticed a strange discrepancy between the token re match stored in t.lex.lexmatch, as compared with an sre_pattern defined in the usual way with the re module. The group(x)'s ...
3
votes
2answers
66 views

Lex: forcing scan?

I'm writing a fairly simple program with LEX, that after parsing a few files, parses input from a user. Now, with the files, everything works like a charm. However, when it comes to user input from ...
3
votes
1answer
221 views

Using Ocamllex for lexing strings (The Tiger Compiler)

I'm trying to follow Appel's "Modern Compiler Implementation in ML" and am writing the lexer using Ocamllex. The specification asks for the lexer to return strings after translating escape sequences. ...
3
votes
1answer
120 views

What to do with the output of lex?

I have absolutely no background in compilers and started off on a "teach myself" journey. I am learning about lex using this tutorial and typed something like this into a file called first.l %% ...
3
votes
1answer
54 views

What's the naming convention of a lexer?

function yy_r9_1($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; $this->yypopstate(); } The above is from the lexer of smarty in PHP,anyone ...
3
votes
1answer
440 views

How to use Boost::Spirit::Lex to lex a file without reading the whole file into memory first?

I'm looking at writing a lexer using boost::spirit::lex, but all the examples I can find seem to assume that you've read the entire file into RAM first. I'd like to write a lexer that doesn't require ...
3
votes
2answers
186 views

Lex and Yacc without Dynamic Memory Allocation

I'm in the process of designing software to run in an embedded environment where the use of dynamic memory is prohibited. Lex and Yacc are well suited for the application. Can I configure Lex and ...
3
votes
2answers
341 views

Unintentional concatenation in Bison/Yacc grammar

I am experimenting with lex and yacc and have run into a strange issue, but I think it would be best to show you my code before detailing the issue. This is my lexer: %{ #include <stdlib.h> ...
3
votes
3answers
698 views

How do I generate different yyparse functions from lex/yacc for use in the same program?

I want to generate two separate parsing functions from lex/yacc. Normally yacc gives you a function yyparse() that you can call when you need to do some parsing, but I need to have several different ...
3
votes
2answers
253 views

Sharing memory among YACC, Lex, and C files

I have a YACC (Bison) grammar, a Lex (Flex) tokenizer, and a C program among which I need to share a struct (or really any variable). Currently, I declare the actual object in the grammar file and ...
3
votes
1answer
1k views

Unable to recognize single line comments in Lex

Am learning lex in this process, I'm generating tokens for the C language, and am trying to recognize single line comments "//", but am having a conflict with the division operator ...
3
votes
2answers
204 views

Is there rule of thumb for catching errors in Lex/Yacc parsing?

Should we catch errors while parsing general purpose language as early as possible (in Lex) or where it is more convenient and give us more information (in Yacc)? How various languages solve this ...
3
votes
5answers
123 views

Should I use Lex or a home-brewed solution to parse a formula?

I'm in the process of writing a small, rule-based 'math' engine. I realize this is unclear, so I'll provide a small example. Let's say you have some variable a, that holds an integer. You also have ...
3
votes
8answers
932 views

How can I learn about compiler theory - online/free resources

I'm interested in learning - at depth - about compiler theory... parsing EBNF LALR? Are all terms I'm familiar with but don't really understand how to actually implement/use.. I'm looking for ...
3
votes
3answers
666 views

Lexical Analysis of Python Programming Language

Does anyone know where a FLEX or LEX specification file for Python exists? For example, this is a lex specification for the ANSI C programming language: ...
3
votes
6answers
3k views

what is the difference between lex and yacc

i have worked with lex for excuting some code whenever some regular expression is found, Can yacc do something more than that?if yes what
3
votes
6answers
954 views

Best modern text parsing? AKA When to use Lex and Yacc?

I have as input blocks of text with commands and arguments, one per line, such as XYZ ARG1,ARG2,ARG3,...,ARGN And I want to verify that the arguments to XYZ are well formed for that particular ...
3
votes
4answers
358 views

Is it possible to have two or more Lex/Yacc parsers in the same application

I have an application where I already have a parser for one sort of grammar and I need to add a second different grammar for another purpose. Is it possible to have more than one? And if so how do ...
2
votes
1answer
49 views

Tracking source position of AST nodes in a compiler (ocaml)

I'm writing a compiler in ocaml, using ocamllex/yacc. Things are going well, but I've a design problem. For each AST node I create, it'd be good to have information about line/character position of ...

1 2 3 4 5 6