Welcome to

Magenic Technologies Community Blog

Sign in | Join | Help

Browse by Tags

All Tags » Sotue   (RSS)

A WPF-Based NFA Viewer for Sotue

My work in building NFAs from regular expressions is nearly complete; many constructs are supported. I have a variety of unit tests built to test the construction of NFAs for various constructs (such as the OR operator in a regular expression of "a|b"),
Posted by jefff | 0 Comments
Filed under: ,

NFA Generation

Lexical analysis involves searching input data for lexemes that match tokens specified as regular expressions. This is enabled by building a state machine for each token, and then running each input character through the state machines looking for matches.
Posted by jefff | 0 Comments
Filed under:

The Sotue Vision: Lex and Yacc the .NET Way

The lex tool is defined in Wikipedia as follows: lex is a program that generates lexical analyzers ("scanners" or "lexers"). Lex is commonly used with the yacc parser generator. Lex, originally written by Eric Schmidt and Mike Lesk,
Posted by jefff | 1 Comments
Filed under: