SimMatch.mesa
Copyright Ó 1991 by Xerox Corporation. All rights reserved.
Brian Oki, February 18, 1991 2:59 pm PST
DIRECTORY
IO USING [STREAM],
PatternMatch USING [MatchProc];
SimMatch: CEDAR DEFINITIONS
~ BEGIN
Similar: PatternMatch.MatchProc;
Tokenize: PROC [text: IO.STREAM] RETURNS [tokens: IO.STREAM];
Takes a stream and tokenizes it, i.e., removes everything except
alphabetic characters, lower-cases all capitals, and puts everything
into a stream, separated by single spaces.
END.