An open API service indexing awesome lists of open source software.

https://github.com/josemavarez11/regular-expressions-validator

C++ console program for validating regular expressions
https://github.com/josemavarez11/regular-expressions-validator

automaton compiler-design cplusplus regular-expressions validator

Last synced: about 1 month ago
JSON representation

C++ console program for validating regular expressions

Awesome Lists containing this project

README

        

# Regular Expressions Validator

**C++ console program that validates the input of different types of character strings based on the following regular expressions:**

- Digit: [0-9]
- Letter = [a-zA-Z]
- Integer = digit+
- Real Number = digit+ . digit+
- Identifier = letter (digit | letter ) *
- Operator = (+ | | - | | * | / | %)

> [!NOTE]
> School project for compiler design class at URU.