Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.12 KB

README.md

File metadata and controls

27 lines (20 loc) · 1.12 KB

Alphabet

GitHub Header

String and language parser of an alphabet with regular expressions

Menu

The program is a parser of words of an alphabet with regular expressions, it takes as input the symbols of the alphabet, which can be entered by enumeration (a, b, c, d, ...) or by range (A-Z):

Alphabet entryGitHub Header

Also, it compares two strings and describes whether one is a suffix, prefix, substring, or subsequence of the other.

Strings comparisonGitHub Header

Likewise, it generates languages ​​based on the alphabet provided according to the number of elements and their length.

language generationGitHub Header

Finally, by using regular expressions it validates if a string is a valid identifier in the Java programming language

Identifier validationGitHub Header