Building Parsers with Java

Package sjm.examples.regular

Class Summary
AndAssembler Pop two Parsers from the stack and push a new Sequence of them.
CharAssembler Pop a Character from the stack and push a SpecificChar parser in its place.
OrAssembler Pop two parsers from the stack and push a new Alternation of them.
RegularParser This class provides a parser that recognizes regular expressions.
ShowRegularParser Show how to use the RegularParser class.
StarAssembler Pop a parser from the stack and push a new Repetition of it.
 

Exception Summary
RegularExpressionException Signals that a given string is not recognizable as a regular expression.
 


by Steve Metsker