Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ lex(1) — Ultrix WS 1.1

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

sed(1)

yacc(1)

lex(1)

NAME

lex − generate lexical analyzer

SYNTAX

lex [−tvfn] [file...]

DESCRIPTION

The lex command generates programs to be used in simple lexical analysis 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. 

A C source program, ’lex.yy.c’ is generated, 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

−fRuns a faster compilation (does not pack resulting tables).  This is limited to small programs. 

−nPrints no summary information (default option). 

−tWrites to standard output instead of to file lex.yy.c.

−vPrints one-line summary of generated statistics. 

EXAMPLE

In the following example, the command

lex lexcommands

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

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

is an example of a lex program that would be put into a lex command file.  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)
“LEX − Lexical Analyzer Generator,” ULTRIX-32 Supplementary Documents, Vol. II:Programmer

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