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

2
votes
0answers
16 views

Flex grammar produces error: scanner push-back overflow

I'm working with a grammar which uses off-sided parsing (iow: Tabs as block delimiters). The grammar uses an indent stack to keep track of nested blocks, and attempts to wrap blocks with appropriate ...
0
votes
0answers
14 views

Computation of DFA states

I want to compute the total number of DFA states for a certain regular expression using FLEX. Which C files or functions will help me to achieve this task using FLEX?
0
votes
1answer
19 views

Why did the regular expression of greed——How to support multiline mode?

I want to parse multiline comment, but it's always greedy. The regular expression: MUL_COMMENT ("#*"(.|\n)*?"*#") flex file fragment: <DIRECTIVE>{MUL_COMMENT} {BEGIN INITIAL; ...
0
votes
1answer
54 views

syntax error, unexpected token, expecting end of file

I get the following error when i run my Parser file ( binary got after compiling Flex/Bison files). error: syntax error, unexpected TKN_PRIMARY, expecting end of file Here is rule defined in flex ...
0
votes
1answer
14 views

Unrecognized rule Errors in lex

I am trying to compile the following program, but receiving unrecognized rule errors. I have the following lex program, and its giving me many unrecognized rule errors for lines 18, 25, 28, 37, 41, ...
-2
votes
0answers
8 views

how lex/yacc be used to test the device driver file in linux? [closed]

I am working on the project in which I have to make the universal test file which can test all the device drivers in linux. So for that I have to use lex/yacc to read the configuration file which ...
0
votes
1answer
15 views

Lex file unrecognized rule

I am trying to run the following program, and am getting unrecognized rule: 37. Not sure why it is giving me that error in line 37. Command: $ lex mycsv2html.l %{ //Definition ...
-1
votes
1answer
37 views

lex and yacc — combine two lexers and one yacc

I have two lex files with functions xxlex() and yylex() and I have one yacc grammar file. I wanted on a grammatical rule to always invoke xxlex(). But xxlex() is only called once, and I want it to be ...
0
votes
3answers
66 views

To tokenize terminals or write them into parser grammar?

Take a look at this: http://www.verilog.com/VerilogBNF.html UNARY_OPERATOR and BINARY_OPERATOR overlap as tokens. so does OUTPUT_SYMBOL and LEVEL_SYMBOL. I'm sure there are others. My tokenizer ...
2
votes
3answers
69 views

Verilog gate level parser

I want to parse Verilog gate level code and store the data in a data structure (ex. graph). Then I want to do something on the gates in C/C++ and output a corresponding Verilog file. (I would like ...
1
vote
1answer
40 views

Yacc and Lex error in parsing expressions which use binary operators

I am new to Lex and Yacc and I am trying to create a parser for a simple language which allows for basic arithmetic and equality expressions. Though I have some of it working, I am encountering errors ...
1
vote
3answers
103 views

Reasons for using lex/yacc alternatives?

About once a year I have to develop or at least design a grammar and a parser - that appears a constant of my working life. Every time I'm facing this task, thus about once year, I, quite a lex/yacc ...
0
votes
1answer
24 views

Make bison reduce to start symbol only if EOF is found

I am using Bison with Flex. I have the following rule in my Yacc input file: program : PROGRAM m2 declarations m0 block {cout << "Success\n"} ; The problem is that if I have a program ...
1
vote
3answers
49 views

Search and replace a string as shown below

I am reading a file say x.c and I have to find for the string "shared". Once the string like that has been found, the following has to be done. Example: shared(x,n) Output has to be *var = ...
-1
votes
1answer
27 views

Check Yacc-Grammar using C# [closed]

I am working on developing Parser where I get Yacc Grammar . I would like to know if there is a tool or library to check Yacc Grammar .
0
votes
1answer
16 views

Unexpected output from lex program

I have written a simple lex program to perform average of positive numbers , the program is compiling fine but i'm not able to get the expected output.I'm passing the input to the program from a file ...
0
votes
1answer
11 views

How to recognize string in Lex file

Hi what would be appropriate to recognize string in a lex. I have already tried enter code here import java_cup.runtime.*; %% %cup %line NUM = [0-9] ID = [a-zA-Z] Pun= [:=;#@$^~] WhiteSpace = [ ...
0
votes
0answers
13 views

Error with 'pcap-lex' while using make for Android OS compilation

When I run . build/envsetup.sh lunch full-eng make I get the following error target Executable: tcpdump (out/target/product/generic/obj/EXECUTABLES/tcpdump_intermediates/LINKED/tcpdump) ...
0
votes
2answers
58 views

Grammar for Linux command line with yacc and lex

I'd like to write down a formal grammar for describing the command line usage of some GNU/Linux tools. First, I would like to define a grammar : Start -> COMMAND AXIS AXIS -> EMPTY | INTER ...
0
votes
1answer
25 views

using ^ (caret) inside the states in lex/flex

I'll put up my lex code first(lex body only). %% ps {BEGIN STATE1;} . ; <STATE1>^[0-9] print("number after ps".) with this code I'm trying to match a number right after the letters ...
1
vote
0answers
48 views

Represent String pattern in lex file

How do you represent a string in lex file? I've tried the following: {NUM}* {ID}* { return new Symbol(sym.STR);} But received an error as: Description: + ? or * must follow an expression or ...
0
votes
1answer
12 views

Finding a particular token

Well I am using lex for finding the tokens. I want to get the Identifier token's value that comes after the token class, how do i do it. e.g my function should return identifier after the class ...
0
votes
1answer
41 views

Passing matches between flex states

I'm working on a project for a class in Formal Methods and Models and I'm having some issues with flex/lex. We're using flex and C to write a simple parser to check usernames and passwords from ...
1
vote
1answer
32 views

Accept only one input from the keyboard in lex

First the program asks the user to enter a string. then it calls the yylex() function and display whether the string is accepted or not. I want to stop accepting further strings from the input after I ...
0
votes
1answer
22 views

cannot find -lfl when using flex

Here is my sample flex file, %{ /* need this for the call to getlogin() below */ #include <unistd.h> %} %% username printf("%s\n", getlogin()); %% main() { yylex(); } I ran the ...
0
votes
0answers
60 views

Need Help to construct a simple business rule engine in Lex and Yacc

I need to develop a business rule engine prototype using LEX and YACC in C and compare its performance for a set of simple business rules with drools or ANTLR implementation. Now I started to ...
0
votes
2answers
40 views

flex lexical analyzer non-repetition of a set of characters

I have the expression [A-E]|[A-E]{3}|[A-E]{4} its made to recognize names of angles (A,B,C,D,E) or triangles (ABC,BCD) ect or Rectangles (ABCD,EDCB) ect BUT i want to change the expression so ...
0
votes
1answer
35 views

Clean all spaces and newlines C or Lex/Bison

I need to clean all spaces and newlines (\n) of the yytext on my Lex/Bison program. I have a proprierty like this: <PROPERTY>[^}]* TAG=yytext; I need it to parse all my CSS code file into ...
0
votes
2answers
20 views

lex - Removing “/*” also removes internal stars

I'm trying to pull comments out of a c file. But my code pulls out all stars instead of just /* and */. Can anyone help? Input /**A**/ or /***/ Desired Output *A* and * My Output *A and nothing ...
0
votes
1answer
25 views

What does return 0 do in the code and why is the yywrap function written without a body?

I AM USING BISON AND FLEX. What does return 0 do in case of the kcalc.l file that I have posted? And I am not getting the use of yywrap without a body (i mean not literally but an empty body).The ...
1
vote
1answer
66 views

How to make lex/flex recognize tokens not separated by whitespace?

I'm taking a course in compiler construction, and my current assignment is to write the lexer for the language we're implementing. I can't figure out how to satisfy the requirement that the lexer must ...
0
votes
2answers
62 views

Matching a string in Lex that contains at least one upper and lower case letter,

I'm trying to match a string of 4 to 8 mixed case letters that contains at least uppercase and at least one lowercase letter. I tried [a-zA-z]{4,8} but that matches strings like abba and CREEEDD which ...
0
votes
1answer
38 views

Why the return value for more than a token?

I want to return DOLLARID($foo) and DOTID(.foo),so I wirte tow rule(A code snippet of my lex file): ID ([_a-zA-Z]+[a-zA-Z0-9_\-]*) DOLLAR ("$"|("$!")) DOT "." %x DIRECTIVE REFERENCE %% [^#$]*?/"$" ...
0
votes
1answer
49 views

Not able to run JFlex generated lexer Java file

So I used JFlex to generate a file called Yylex.java without any problems. When I try to compile it with the command javac Yylex.java, I get 30 errors, originating with this one: Yylex.java:13: ...
0
votes
2answers
23 views

How to scan multi-line input with lex

A standard way of saving long lines in a file is to split them into shorter sub-lines and end each sub-line except the last with a backslash character. I want to create lex/flex rules to scan such ...
0
votes
1answer
43 views

“Undefined definition” error in lex program

I am writing a lex program. The objective of this problem is that I enter a string Exemple Name@PhoneNumber also the first letter in the name should be uppercase letter letterMin ([a-z]) letterMaj ...
0
votes
0answers
59 views

“Unrecognized rule” error in lex program

I am writing a lex program. The objective of this problem is that I enter a string (letters and other characters) and it returns the length of this string. Here is the code: letter ([a-z]|[A-Z]) ...
0
votes
3answers
150 views

bracket matching with c++

I am using c++ to read a file and get the key value by the key name. The point is that the key name might be repeated many times in this file. They are structured in the following format. Data file ...
0
votes
1answer
58 views

Is there any flex (“Fast LEXical analyzer”) debugger out there?

I'm studying "Compilers" and we work on Flex to program. I create *.lex files (with any editor), convert them into lex.yy.c via flex, and then compile to a.exe using gcc. Writing lex code in an ...
0
votes
1answer
25 views

How to parse continuous stream of text

I have the task to write an application that controls OpenVPN using the management interface, which is just a text stream. I thought about using a lexer and parser generator like lex and yacc to do ...
0
votes
1answer
104 views

Unrecognized rule error

%option lex-compat %option noyywrap %option yylineno %{ #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> %} %{ ...
0
votes
1answer
38 views

Retreive range of matched token with Lex/Yacc

I'm using Lex to parse a given input string in a C program. everything works so far, but I would like to know the range of the matched token in the original input string. Is this possible? yytext ...
1
vote
2answers
56 views

how do I parse a data structure composed of n lines when n is known in advanced using flex/bison?

Is flex/bison suitable for parsing a data structure containing N vertices composed of three floats representing x,y,z coordinates when N is known in advance? If so, what would the parser/lexer setup ...
0
votes
1answer
37 views

Error Catching Newline in Lex

I have been debugging for a couple of days now and can't seem to fix this bug. The following code is a Lex file for C language grammar. I have two problems I haven't been able to spot yet. This ...
1
vote
1answer
42 views

Extract a substring using lex regular expressions

Is it possible to extract a substring with lex regular expressions, like it can be done with sed? For example sed -e 's/[0-9]*\([a-z]*\)[0-9]*/\1/' will extract foo from 34234foo777 or bar from ...
0
votes
2answers
112 views

Bison conflicting type for yyerror

I'm new in using flex and bison. I'm trying to make a calculator from flex and bison, but I found an error during the compile. Thanks before. Here is the error: C:\GnuWin32\src>gcc lex.yy.c ...
0
votes
1answer
57 views

Suggestions for a Small error in lex and yacc

again some problem in the NLP implementation of my code .. In pro.l file i have a few patterns and their actions ... Pro.l %{ #include <stdio.h> #include <stdlib.h> #include ...
0
votes
0answers
22 views

How to discard the rest of line after syntax error

I'm implementing a small shell, and using lex&yacc to parse command. Lex reads command from stdin and yacc execute the command after yyparse. The problem is, when there is a syntax error, yacc ...
0
votes
2answers
47 views

How to fix this “conflicts: 1 shift/reduce”

I write a grammar to parse velocity, It has a conflict at "if elseif else" the flex file: %{ #include<stdio.h> #include<string.h> #include "context.h" #include "bool.h" #include ...
0
votes
2answers
124 views

LEX and YACC : grammar implementation in NLP

am trying to build an NLP . But the thing is that i am not able to get few things in it . For ex : if in action i say printf("print the third argument %s", $3) ; then its not giving me the ...

1 2 3 4 5 12