active questions tagged lexical-analyser - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:39:32Z http://stackoverflow.com/feeds/tag/lexical-analyser http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1913621/is-there-a-simple-compiler-for-a-small-language 4 is there a simple compiler for a small language Ayoub 2009-12-16T10:08:01Z 2009-12-20T05:20:02Z <p>I am looking for a simple compiler that compiles a simple language, I need it to write a paper about it and to learn how compilers work, I am not looking for a sophisticated thing just a simple language (by simple I mean a small code because for example gcc is toooooo big). any help is appreciated.</p> http://stackoverflow.com/questions/1920660/what-to-name-these-columns-in-my-symbol-table -1 What to name these columns in my symbol table Phenom 2009-12-17T10:01:43Z 2009-12-17T10:28:37Z <p>I'm using yacc to make a symbol table for a made-up language grammar.</p> <p>Column 1 will have either "variable" or "function."</p> <p>Column 2 will have either "int" or "void."</p> <p>I was thinking of naming one column "type" but then I wouldn't know what to call the other one.</p> http://stackoverflow.com/questions/1919378/lex-yacc-and-parser-scanner -1 lex/yacc and parser/scanner Phenom 2009-12-17T04:04:38Z 2009-12-17T05:03:03Z <p>lex and yacc are supposed to be used together. </p> <p>Which ones is the scanner and which one is the parser?</p> <p>Which one creates a scanner and which one creates a parser?</p> http://stackoverflow.com/questions/1888321/what-constitutes-a-word-in-vim 0 What constitutes a 'word' in vim ? Andreas Grech 2009-12-11T14:13:28Z 2009-12-11T16:13:09Z <p>Let's say we have the following in vim atm:</p> <pre><code>int main () { printf("hello"); return 0; } </code></pre> <p>In vim, <kbd>w</kbd> moves a word to the right, but what exactly constitutes a 'word'?</p> <p><hr></p> <p>For example, if I have the cursor on <kbd>p</kbd> of <code>printf</code>, pressing <kbd>w</kbd> takes u to <code>(</code> and pressing another <kbd>w</kbd> skips the <code>"</code> and puts the cursor on the <code>h</code> of <code>hello</code>. Why was the <code>"</code> skipped ?</p> <p>Pressing another <kbd>w</kbd> now takes you to the other <code>"</code> before the <code>)</code> and pressing another <code>w</code> takes you to the next line. Why where the <code>)</code> and <code>;</code> skipped?</p> <p>And now the cursor is on the <code>r</code> of <code>return</code>. Pressing a <kbd>w</kbd> takes the cursor on <code>0</code> and pressing another <kbd>w</kbd> now takes the cursor on the <code>;</code>. So in this case, the <code>;</code> was not skipped unlike in the previous line. Why is this?</p> <p><hr></p> <p>I hope I made my question clear enough but I'm just trying to understand how this all works.</p> http://stackoverflow.com/questions/1854200/how-to-put-a-final-summary-message-in-a-yacc-program -1 How to put a final summary message in a yacc program? Phenom 2009-12-06T02:57:08Z 2009-12-07T10:07:06Z <p>When I redirect input to my yacc program from an input file, after it finishes parsing the file I want the yacc parser to print a summary of what it did. I want it to do the same thing if I am entering input through the keyboard and then I press Ctrl-D. Is there a way to do that?</p> http://stackoverflow.com/questions/1854331/what-does-the-default-main-created-by-flex-look-like -2 What does the default main() created by flex look like? Phenom 2009-12-06T04:14:40Z 2009-12-06T09:35:20Z <p>I want my flex/yacc program to do the same thing as what it already does, but I want to modify it a little. If I were to put a main() in my .l file, and have it do the same thing as if I didn't add a main(), then what would the code look like?</p> http://stackoverflow.com/questions/1853204/yylval-and-union 0 yylval and union Phenom 2009-12-05T19:35:57Z 2009-12-06T02:48:02Z <p>What is the purpose of union in the yacc file? Is it directly related to yylval in the flex file? If you don't use yylval, then you don't need to use union?</p> http://stackoverflow.com/questions/1851829/how-to-use-yylval-with-strings-in-yacc 0 How to use yylval with strings in yacc Phenom 2009-12-05T10:35:04Z 2009-12-05T11:09:06Z <p>I want to pass the actual string of a token. If I have a token called ID, then I want my yacc file to actually know what ID is called. I thing I have to pass a string using yylval to the yacc file from the flex file. How do I do that?</p> http://stackoverflow.com/questions/1823561/insert-text-in-the-input-file-in-lex-with-c 0 Insert text in the input file in Lex (with C) Mario Cesar 2009-12-01T01:55:55Z 2009-12-01T02:09:55Z <p>Hey!</p> <p>I'm trying to help a friend in a college assignment, but i kind of forgot a lot of C an Lex.</p> <p>The thing is, we are trying to parse a HTML and a correspondent CSS file and add to a tag it's style.</p> <p>Eg:</p> <p><strong>HTML</strong></p> <pre><code>&lt;body&gt; &lt;/body&gt; </code></pre> <p><strong>CSS</strong></p> <pre><code>body{color:black;} </code></pre> <p><strong>modified HTML</strong></p> <pre><code>&lt;body style="color:black;"&gt; &lt;/body&gt; </code></pre> <p><hr></p> <p>All the regex are done and the Macros too.</p> <p><strong>Problem:</strong> The input HTML and modified HTML gotta be the same file. We tried redirect both <em>yyin</em> and <em>yyout</em> to the same file... and then use the fputs(text, yyout); where text is a char * with all the style information (and style=""). It doesn't work.</p> <p>So... Can you guys help him?</p> <p>its important not to lose the notion of location in the file (so the style="" goes to the right tag).</p> <p>Thanks</p> http://stackoverflow.com/questions/1747372/how-does-a-lexer-return-a-semantic-value-that-the-parser-uses 0 How does a lexer return a semantic value that the parser uses? Phenom 2009-11-17T08:31:46Z 2009-11-30T15:55:28Z <p>Is it always necessary to do so? What does it look like? </p> http://stackoverflow.com/questions/1820103/why-use-lexical-analyzers 0 Why Use Lexical Analyzers? Nathan Campos 2009-11-30T14:19:46Z 2009-11-30T14:57:39Z <p>Hello,<br /> I'm building my own language using Flex, but I want to know some things:</p> <ul> <li>Why use lexical analyzers?</li> <li>There are going to help me in something?</li> <li>Are they obligatory?</li> </ul> <p>Thanks.</p> http://stackoverflow.com/questions/1753371/my-flex-yacc-program-compiles-differently-on-two-different-linux-machines 0 My flex/yacc program compiles differently on two different linux machines Phenom 2009-11-18T03:00:14Z 2009-11-18T03:13:41Z <p>One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but then it runs differently. What's happening. How can I get the program to run correctly on this linux machine?</p> http://stackoverflow.com/questions/1751877/could-you-give-me-a-correctly-formatted-program-example-for-this-grammar -1 Could you give me a correctly formatted program example for this grammar? [closed] Phenom 2009-11-17T21:19:52Z 2009-11-17T21:24:40Z <p>The lex file:</p> <pre><code>/* C-Minus BNF Grammar */ %{ #include "parser.h" #include &lt;string.h&gt; %} %union { int intval; struct symtab *symp; } %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token &lt;symp&gt; ID %token &lt;intval&gt; NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL type &lt;string&gt; paramlist %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' {$2-&gt;value = 0; $2-&gt;arraysize = 0;}; | type_specifier ID '[' NUM ']' ';' {$2-&gt;arraysize = $4;printf("Array size is %d", $2-&gt;arraysize);} ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2-&gt;args = 'a'; printf("Parameters: \n", $2-&gt;args); } ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; %% /* look up a symbol table entry, add if not present */ struct symtab *symlook(char *s) { printf("Putting %s into the symbol table\n", s); char *p; struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) { /* is it already here? */ if(sp-&gt;name &amp;&amp; !strcmp(sp-&gt;name, s)) { yyerror("already in symbol table\n"); exit(1); return sp; } if(!sp-&gt;name) { /* is it free */ sp-&gt;name = strdup(s); return sp; } /* otherwise continue to next */ } yyerror("Too many symbols"); exit(1); /* cannot continue */ } /* symlook */ yyerror(char *s) { printf( "yyerror: %s\n", s); } </code></pre> http://stackoverflow.com/questions/1748466/how-to-return-literals-from-flex-to-yacc 1 How to return literals from flex to yacc? Phenom 2009-11-17T12:17:12Z 2009-11-17T14:23:25Z <p>In my yacc file I have things like the following:</p> <pre><code>var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; </code></pre> <p>ID, NUM, INT, and VOID are tokens that get returned from flex, so yacc has no problems recognizing them. The problem is that in the above there are things like '[' and ';'. When these are recognized by flex, what should be returned to yacc?</p> http://stackoverflow.com/questions/1749009/the-program-i-made-with-flex-yacc-doesnt-always-recognize-identifiers 0 The program I made with flex/yacc doesn't always recognize identifiers Phenom 2009-11-17T13:49:22Z 2009-11-17T13:57:27Z <p>I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with an identifier, I automatically get a syntax error. However, I noticed that using an identifier won't generate an error if it is preceded by 'int'. If a is an identifier, then if I type 'int a;' this is ok. But if I type 'a = 3' I get an error. Just typing a by itself will generate an error.</p> <p>The lex file:</p> <pre><code>%{ #include &lt;stdlib.h&gt; #include &lt;ctype.h&gt; #include &lt;string.h&gt; #include "y.tab.h" %} else else if if int int return return void void while while id [a-zA-Z]+ num [0-9]+ lte &lt;= gte &gt;= equal == notequal != %% {else} { return ELSE; } {if} { return IF; } {int} { return INT; } {return} { return RETURN; } {void} { return VOID; } {while} { return WHILE; } {id} { return ID; } {num} { return NUM; } {lte} { return LTE; } {gte} { return GTE; } {equal} { return EQUAL; } {notequal} { return NOTEQUAL; } [\[\];] { return yytext[0];} %% </code></pre> <p>The yacc file</p> <pre><code>/* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; </code></pre> http://stackoverflow.com/questions/1748758/using-the-regular-expression-in-flex 0 Using the regular expression [\[\];] in flex Phenom 2009-11-17T13:08:37Z 2009-11-17T13:38:29Z <p>If I have the following in my flex file, what does it do?</p> <pre><code>[\\[\\];] { return yytext[0]; } </code></pre> http://stackoverflow.com/questions/1748381/why-do-i-get-a-syntax-error-in-my-program-made-with-flex-and-yacc 0 Why do I get a syntax error in my program made with flex and yacc? Phenom 2009-11-17T11:56:50Z 2009-11-17T12:04:29Z <p>I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I type</p> <p>int a;</p> <p>int b;</p> <p>it doesn't work. After I type int a; the program echoes ; for some reason. Then when I type int b; I get syntax error.</p> <p>The lex file:</p> <pre><code>%{ #include &lt;stdlib.h&gt; #include &lt;ctype.h&gt; #include &lt;string.h&gt; #include "y.tab.h" %} else ELSE if IF int INT|int return RETURN void VOID while WHILE id [a-zA-Z]* num [0-9]* lte &lt;= gte &gt;= equal == notequal != %% {else} { return ELSE; } {if} { return IF; } {int} { return INT; } {return} { return RETURN; } {void} { return VOID; } {while} { return WHILE; } {id} { return ID; } {num} { return NUM; } {lte} { return LTE; } {gte} { return GTE; } {equal} { return EQUAL; } {notequal} { return NOTEQUAL; } %% </code></pre> <p>The yacc file:</p> <pre><code>/* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; </code></pre> http://stackoverflow.com/questions/1747042/does-this-program-grammar-only-recognize-variables-with-the-name-id 0 Does this program grammar only recognize variables with the name 'ID'? Phenom 2009-11-17T06:53:07Z 2009-11-17T07:02:54Z <p>I need to make a scanner in lex/flex to find tokens and a parser in yacc/bison to process those tokens based on the following grammar. When I was in the middle of making the scanner, it appeared to me that variables, functions, and arrays in this language can only have the name 'ID'. Am I misreading this yacc file?</p> <pre><code>/* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; </code></pre> http://stackoverflow.com/questions/1740551/when-is-the-symbol-table-for-this-program-built 0 When is the symbol table for this program built Phenom 2009-11-16T07:05:16Z 2009-11-16T07:10:17Z <p>When I run make on the following Makefile, when is the symbol table built, if it even is?</p> <pre><code>LEX = flex YACC = yacc CC = gcc calcu: y.tab.o lex.yy.o $(CC) -o calcu y.tab.o lex.yy.o -ly -lfl y.tab.c y.tab.h: parser.y $(YACC) -d parser.y y.tab.o: y.tab.c parser.h $(CC) -c y.tab.c lex.yy.o: y.tab.h lex.yy.c $(CC) -c lex.yy.c lex.yy.c: calclexer.l parser.h $(LEX) calclexer.l clean: rm *.o rm *.c rm calcu </code></pre> http://stackoverflow.com/questions/1739965/why-doesnt-this-calculator-program-work-correctly -2 Why doesn't this calculator program work correctly? [closed] Phenom 2009-11-16T03:54:31Z 2009-11-16T03:54:31Z <p>The program compiles without any errors. Here are the different parts:</p> <p>parser.h</p> <pre><code>/* * Header for calculator program */ #define NSYMS 20 /* maximum number of symbols */ struct symtab { char *name; double value; } symtab [NSYMS]; struct symtab *symlook(); </code></pre> <p>parser.y</p> <pre><code>%{ #include "parser.h" #include &lt;string.h&gt; %} %union { double dval; struct symtab *symp; } %token &lt;symp&gt; NAME %token &lt;dval&gt; NUMBER %type &lt;dval&gt; expression %type &lt;dval&gt; term %type &lt;dval&gt; factor %% statement_list: statement '\n' | statement_list statement '\n'; statement: NAME '=' expression { $1-&gt;value = $3; } | expression { printf("= %g\n", $1); }; expression: expression '+' term { $$ = $1 + $3; } | expression '-' term { $$ = $1 - $3; } | term; term: term '*' factor { $$ = $1 * $3; } | term '/' factor { if($3 == 0.0) yyerror("divide by zero"); else $$ = $1 / $3; } | factor ; factor: '(' expression ')' { $$ = $2; } | '-' factor { $$ = -$2; } | NUMBER | NAME { $$ = $1-&gt;value; } ; %% /* look up a symbol table entry, add if not present */ struct symtab *symlook(char *s) { char *p; struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) { /* is it already here? */ if(sp-&gt;name &amp;&amp; !strcmp(sp-&gt;name, s)) return sp; if(!sp-&gt;name) { /* is it free */ sp-&gt;name = strdup(s); return sp; } /* otherwise continue to next */ } yyerror("Too many symbols"); exit(1); /* cannot continue */ } /* symlook */ yyerror(char *s) { printf( "yyerror: %s\n", s); } </code></pre> <p>y.tab.h</p> <pre><code>/* A Bison parser, made by GNU Bison 2.3. */ /* Skeleton interface for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { NAME = 258, NUMBER = 259 }; #endif /* Tokens. */ #define NAME 258 #define NUMBER 259 #if ! defined YYSTYPE &amp;&amp; ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE #line 5 "parser.y" { double dval; struct symtab *symp; } /* Line 1489 of yacc.c. */ #line 62 "y.tab.h" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 #endif extern YYSTYPE yylval; </code></pre> <p>calclexer.l</p> <pre><code>%{ #include "y.tab.h" #include "parser.h" #include &lt;math.h&gt; %} %% ([0-9]+|([0-9]*\.[0-9]+)([eE][-+]?[0-9]+)?) { yylval.dval = atof(yytext); return NUMBER; } [ \t] ; /* ignore white space */ [A-Za-z][A-Za-z0-9]* { /* return symbol pointer */ yylval.symp = symlook(yytext); return NAME; } "$" { return 0; /* end of input */ } \n |. return yytext[0]; %% </code></pre> <p>Makefile</p> <pre><code>LEX = flex YACC = yacc CC = gcc calcu: y.tab.o lex.yy.o $(CC) -o calcu y.tab.o lex.yy.o -ly -lfl y.tab.c y.tab.h: parser.y $(YACC) -d parser.y y.tab.o: y.tab.c parser.h $(CC) -c y.tab.c lex.yy.o: y.tab.h lex.yy.c $(CC) -c lex.yy.c lex.yy.c: calclexer.l parser.h $(LEX) calclexer.l clean: rm *.o rm *.c rm calcu </code></pre> <p>To create the program, just type make.</p> http://stackoverflow.com/questions/1739175/whats-the-difference-between-a-parser-and-a-scanner 0 What's the difference between a parser and a scanner? Phenom 2009-11-15T22:55:50Z 2009-11-16T02:51:26Z <p>I already made a scanner, now I'm supposed to make a parser. What's the difference?</p> http://stackoverflow.com/questions/1739705/whats-wrong-with-this-lex-file 0 What's wrong with this lex file? Phenom 2009-11-16T02:17:17Z 2009-11-16T02:50:57Z <p>I have a Makefile so that when I type make the following commands run:</p> <pre><code>yacc -d parser.y gcc -c y.tab.c flex calclexer.l gcc -c lex.yy.c </code></pre> <p>But then after this I get the following error messages:</p> <pre><code>calclexer.l:10: error: parse error before '[' token calclexer.l:10: error: stray '\' in program calclexer.l:15: error: stray '\' in program calclexer.l:24: error: stray '\' in program make: *** [lex.yy.o] Error 1 </code></pre> <p>This is what is inside calclexer. How can it be fixed?</p> <pre><code>%{ #include "y.tab.h" #include "parser.h" #include &lt;math.h&gt; %} %% %% ([0-9]+|([0-9]*\.[0-9]+)([eE][-+]?[0-9]+)?) { yylval.dval = atof(yytext); return NUMBER; } [ \t] ; /* ignore white space */ [A-Za-z][A-Za-z0-9]* { /* return symbol pointer */ yylval.symp = symlook(yytext); return NAME; } "$" { return 0; /* end of input */ } \n |. return yytext[0]; %% </code></pre> http://stackoverflow.com/questions/1280606/handling-error-conditions-in-lex-rather-than-yacc 0 Handling error conditions in Lex rather than Yacc? DevDevDev 2009-08-14T23:06:59Z 2009-09-30T06:33:03Z <p>Suppose I have a lex regular expression like</p> <pre><code>[aA][0-9]{2,2}[pP][sS][nN]? { return TOKEN; } </code></pre> <p>If a user enters</p> <pre><code>A75PsN A75PS </code></pre> <p>It will match</p> <p>But if a user says something like</p> <pre><code>A75PKN </code></pre> <p>I would like it to error and say "Character K not recognized, expecting S"</p> <p>What I am doing right now is just writing it like</p> <pre><code>let [a-zA-Z] num [0-9] {let}{num}{2,2}{let}{2,3} </code></pre> <p>And then essentially re-lexing the string in Yacc so that I can have meaningful error conditions</p> <p>How can I get around this?</p> <p>The only thing I can think of is to use named groups?</p> http://stackoverflow.com/questions/1213168/what-is-the-use-of-tokens-h-when-i-am-programming-a-lexer 0 what is the use of tokens.h when I am programming a lexer? mekasperasky 2009-07-31T15:24:27Z 2009-07-31T17:55:16Z <p>I am programming a lexer in C and I read somewhere about the header file <code>tokens.h</code>. Is it there? If so, what is its use?</p> http://stackoverflow.com/questions/1116911/textual-analysis-of-large-documents 0 Textual analysis of large documents jptacek 2009-07-12T21:02:14Z 2009-07-24T21:20:02Z <p>I have a project where I need to compare multi-chapter documents to a second document to determine their similarity. The issue is I have no idea how to go about doing this, what approaches exist or if their are any libraries available.</p> <p>My first question is... what is similar? The numbers of words that match, the number of consecutive words that match?</p> <p>I could see writing a parser that puts each document into an array with the word and location and then comparing them.</p> <p>I saw the earlier question at <a href="http://stackoverflow.com/questions/220187/algorithms-or-libraries-for-textual-analysis-specifically-dominant-words-phras">http://stackoverflow.com/questions/220187/algorithms-or-libraries-for-textual-analysis-specifically-dominant-words-phras</a></p> <p>however, it seems somewhat different than what I am attempting to do.</p> <p>Any options or pointers people may have would be great!</p> http://stackoverflow.com/questions/921648/how-to-make-a-flex-lexical-scanner-to-read-utf-8-characters-input 0 How to make a flex (lexical scanner) to read UTF-8 characters input? Martin Cote 2009-05-28T15:54:05Z 2009-07-09T07:34:20Z <p>It seems that <a href="http://flex.sourceforge.net/" rel="nofollow">flex</a> doesn't support UTF-8 input. Whenever the scanner encounter a non-ASCII char, it stops scanning as if it was an EOF.</p> <p>Is there a way to force flex to eat my UTF-8 chars? I don't want it to actually match UTF-8 chars, just eat them when using the '.' pattern.</p> <p>Any suggestion?</p> <p><strong>EDIT</strong></p> <p>The most simple solution would be:</p> <p>ANY [\x00-\xff] </p> <p>and use 'ANY' instead of '.' in my rules.</p> http://stackoverflow.com/questions/973035/where-might-i-obtain-a-lexical-analyzer-capable-of-reporting-for-loop-errors-in-c 0 Where might I obtain a lexical analyzer capable of reporting for-loop errors in C or C++? addis 2009-06-09T23:36:17Z 2009-06-10T00:15:51Z <p>I need a simple lexical analyzer that reports for-loop errors in C/C++.</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python 3 Simple regex-based lexer in Python eliben 2008-09-25T15:10:05Z 2009-06-05T04:57:13Z <p>Lexical analyzers are quite easy to write when you have regexes. Today I wanted to write a simple general analyzer in Python, and came up with:</p> <pre><code>import re import sys class Token(object): """ A simple Token structure. Contains the token type, value and position. """ def __init__(self, type, val, pos): self.type = type self.val = val self.pos = pos def __str__(self): return '%s(%s) at %s' % (self.type, self.val, self.pos) class LexerError(Exception): """ Lexer error exception. pos: Position in the input line where the error occurred. """ def __init__(self, pos): self.pos = pos class Lexer(object): """ A simple regex-based lexer/tokenizer. See below for an example of usage. """ def __init__(self, rules, skip_whitespace=True): """ Create a lexer. rules: A list of rules. Each rule is a `regex, type` pair, where `regex` is the regular expression used to recognize the token and `type` is the type of the token to return when it's recognized. skip_whitespace: If True, whitespace (\s+) will be skipped and not reported by the lexer. Otherwise, you have to specify your rules for whitespace, or it will be flagged as an error. """ self.rules = [] for regex, type in rules: self.rules.append((re.compile(regex), type)) self.skip_whitespace = skip_whitespace self.re_ws_skip = re.compile('\S') def input(self, buf): """ Initialize the lexer with a buffer as input. """ self.buf = buf self.pos = 0 def token(self): """ Return the next token (a Token object) found in the input buffer. None is returned if the end of the buffer was reached. In case of a lexing error (the current chunk of the buffer matches no rule), a LexerError is raised with the position of the error. """ if self.pos &gt;= len(self.buf): return None else: if self.skip_whitespace: m = self.re_ws_skip.search(self.buf[self.pos:]) if m: self.pos += m.start() else: return None for token_regex, token_type in self.rules: m = token_regex.match(self.buf[self.pos:]) if m: value = self.buf[self.pos + m.start():self.pos + m.end()] tok = Token(token_type, value, self.pos) self.pos += m.end() return tok # if we're here, no rule matched raise LexerError(self.pos) def tokens(self): """ Returns an iterator to the tokens found in the buffer. """ while 1: tok = self.token() if tok is None: break yield tok if __name__ == '__main__': rules = [ ('\d+', 'NUMBER'), ('[a-zA-Z_]\w+', 'IDENTIFIER'), ('\+', 'PLUS'), ('\-', 'MINUS'), ('\*', 'MULTIPLY'), ('\/', 'DIVIDE'), ('\(', 'LP'), ('\)', 'RP'), ('=', 'EQUALS'), ] lx = Lexer(rules, skip_whitespace=True) lx.input('erw = _abc + 12*(R4-623902) ') try: for tok in lx.tokens(): print tok except LexerError, err: print 'LexerError at position', err.pos </code></pre> <p>It works just fine, but I'm a bit worried that it's too inefficient. Are there any regex tricks that will allow me to write it in a more efficient / elegant way ? </p> <p>Specifically, is there a way to avoid looping over all the regex rules linearly to find one that fits ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/464736/python-regular-expressions-how-to-capture-multiple-groups-from-a-wildcard-expre 3 Python regular expressions - how to capture multiple groups from a wildcard expression? rogueprocess 2009-01-21T10:29:31Z 2009-04-03T22:00:13Z <p>I have a Python regular expression that contains a group which can occur zero or many times - but when I retrieve the list of groups afterwards, only the last one is present. Example:</p> <p><code>re.search("(\w)*", "abcdefg").groups</code>()</p> <p>this returns the list ('g',)</p> <p>I need it to return ('a','b','c','d','e','f','g',)</p> <p>Is that possible? How can I do it? </p> http://stackoverflow.com/questions/406985/implement-word-boundary-states-in-flex-lex-parser-generator 0 Implement word boundary states in flex/lex (parser-generator) ʞɔıu 2009-01-02T14:57:36Z 2009-01-05T15:40:21Z <p>I want to be able to predicate pattern matches on whether they occur after word characters or after non-word characters. In other words, I want to simulate the \b word break regex char at the beginning of the pattern which flex/lex does not support.</p> <p>Here's my attempt below (which does not work as desired):</p> <pre><code>%{ #include &lt;stdio.h&gt; %} %x inword %x nonword %% [a-zA-Z] { BEGIN inword; yymore(); } [^a-zA-Z] { BEGIN nonword; yymore(); } &lt;inword&gt;a { printf("'a' in word\n"); } &lt;nonword&gt;a { printf("'a' not in word\n"); } %% </code></pre> <p>Input :</p> <pre><code>a ba a </code></pre> <p>Expected output</p> <pre><code>'a' not in word 'a' in word 'a' not in word </code></pre> <p>actual output:</p> <pre><code>a 'a' in word 'a' in word </code></pre> <p>I'm doing this because I want to do something like <a href="http://www.rinkworks.com/dialect/" rel="nofollow">the dialectizer</a> and I have always wanted to learn how to use a real lexer. Sometimes the patterns I want to replace need to be fragments of words, sometimes they need to be whole words only.</p>