- Lex programming tool
In
computer science , lex is a program that generates lexical analyzers ("scanners" or "lexers"). Lex is commonly used with theyacc parser generator . Lex, originally written byEric Schmidt andMike Lesk , is the standardlexical analyzer generator on manyUnix systems, and a tool exhibiting its behavior is specified as part of thePOSIX standard.Lex reads an input stream specifying the lexical analyzer and outputs
source code implementing the lexer in the C programming language.Though traditionally proprietary software, versions of Lex based on the original AT&T code are available as
open source , as part of systems such asOpenSolaris andPlan 9 from Bell Labs . Another popularopen source version of Lex is Flex, the "fast lexical analyzer".tructure of a lex file
The structure of a lex file is intentionally similar to that of a yacc file; files are divided up into three sections, separated by lines that contain only two percent signs, as follows: "Definition section" %% "Rules section" %% "C code section"
*The definition section is the place to define macros and to import
header file s written in C. It is also possible to write any C code here, which will be copied verbatim into the generated source file.
*The rules section is the most important section; it associates patterns with Cstatement s. Patterns are simplyregular expression s. When the lexer sees some text in the input matching a given pattern, it executes the associated C code. This is the basis of how lex operates.
*The C code section contains C statements and functions that are copied verbatim to the generated source file. These statements presumably contain code called by the rules in the rules section. In large programs it is more convenient to place this code in a separate file and link it in at compile time.Example of a lex file
The following is an example lex file for the flex version of lex. It recognizes strings of numbers (integers) in the input, and simply prints them out.
/*** Definition section ***/%{/* C code to be copied verbatim */
#include%} /* This tells flex to read only one input file */%option noyywrap
%% /*** Rules section ***/
/* [0-9] + matches a string of one or more digits */ [0-9] + { /* yytext is a string containing the matched text. */ printf("Saw an integer: %s ", yytext); }
. { /* Ignore all other characters. */ }
%%/*** C Code section ***/
int main(void){ /* Call the lexer, then quit. */ yylex(); return 0;}
If this input is given to flex, it will be converted into a C file, lex.yy.c. This can be compiled into an executable which matches and outputs strings of integers. For example, given the input: abc123z.!&*2ghj6the program will print: Saw an integer: 123 Saw an integer: 2 Saw an integer: 6
Using Lex with Yacc
Lex and
Yacc (a parser generator) are commonly used together. Yacc uses aformal grammar to parse an input stream, something which Lex cannot do using simpleregular expression s (Lex is limited to simple finite state automata). However, Yacc cannot read from a simple input stream - it requires a series of tokens. Lex is often used to provide Yacc with these tokens.Lex and make
The make utility can be used to maintain programs that involve lex. make assumes that a file that has an extension of
.l
is a lex source file. It knows how such a file must be processed to create anobject file .Suppose that a list of dependencies in a makefile contains a filename
x.o
, and there exists a filex.l
. Ifx.l
was modified later than the filex.o
(or ifx.o
does not exist), then make will cause lex to be run onx.l
, and then cause the object file x.o to be created from the resultinglex.yy.c
. The make internal macroLFLAGS
can be used to specify lex options to be invoked automatically by make. [citation
url=http://www.opengroup.org/onlinepubs/009695399/utilities/make.html
title=make
journal=The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
publisher=The IEEE and The Open Group
date=2004]References
ee also
*
Flex lexical analyser
*Yacc
*Ragel
*Quex
*List of C# lexer generators
Wikimedia Foundation. 2010.