Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ lex(1) — Duplix 5.0

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

sed(1)

yacc(1)

LEX(1)  —  Unix Programmer’s Manual

NAME

lex − generator of lexical analysis programs

SYNOPSIS

lex [ options ] [ file ] ... 

DESCRIPTION

Lex generates programs to be used in simple lexical analyis of text.  The input files (standard input default) contain regular expressions to be searched for and actions written in C to be executed when expressions are found. 

Lex generates a C source program, lex.yy.c, to be compiled thus:

cc lex.yy.c −ll

This program, when run, copies unrecognized portions of the input to the output and executes the associated C action for each regular expression that is recognized. 

OPTIONS

−f "Faster" compilation: don’t bother to pack the resulting tables; limited to small programs. 

−n Opposite of −v; −n is default. 

−t Place the result on the standard output instead of in file "lex.yy.c". 

−v Print a one-line summary of statistics of the generated analyzer. 

EXAMPLE

The command

lex lexcommands

would draw lex instructions from the file lexcommands, and place the output in lex.yy.c

Below is an example of a lex program that would be put into a lex command file. 

%%
[A−Z]putchar(yytext[0]+´a´−´A´);
[ ]+$;
[ ]+putchar(´ ´);

This program converts upper case to lower, removes blanks at the end of lines, and replaces multiple blanks by single blanks. 

SEE ALSO

sed(1), yacc(1)
M. E. Lesk and E. Schmidt, LEX − Lexical Analyzer Generator

INTEGRATED SOLUTIONS 4.3 BSD  —  April 14, 1986

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026