This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Regex Cheatsheet | |
| Created By: Abdelrhman Safwat | |
| ## Ranges | |
| All Ranges are inclusive | |
| - **[a-z]** ⇒ from a to z lower case only | |
| - **[A-Z]** ⇒ from A to Z upper case only |