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
- Host: GitHub
- URL: https://github.com/josemavarez11/regular-expressions-validator
- Owner: josemavarez11
- Created: 2024-06-25T22:27:48.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T15:51:29.000Z (10 months ago)
- Last Synced: 2025-01-18T09:53:00.033Z (3 months ago)
- Topics: automaton, compiler-design, cplusplus, regular-expressions, validator
- Language: C++
- Homepage:
- Size: 544 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.