Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 415 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 415 Bytes

RegExp

Program to work with regular expression (in math style) and finite state machines. Site: https://anuar96.github.io/regexp/

##Regular expressions format

  • abc -- concatination,
  • a+b+c -- union,
  • a* -- iteration,

Example: (a+b)*c.

##Program features:

  • Optimizing regexp,
  • Conversion between regexp and automata,
  • Operation with regular languages (union, intersection, complement, equivalence check).