This project is a Python-based utility designed to validate Gmail addresses using the re
(regex) module. It ensures that email addresses meet Gmail's formatting standards, making it a handy tool for developers and testers handling email inputs.
- Validates email format specific to Gmail (
@gmail.com
domain). - Detects invalid characters and patterns.
- Lightweight and efficient with no additional dependencies beyond Python's standard library.
- Language: Python
- Modules:
re
(regex)
📦 Gmail-Validation
├── 📄 main.py # Main script for email validation
├── 📄 README.md # Project documentation
- Clone the repository
git clone https://github.com/your-username/Gmail-Validation.git
- Run the script
python main.py
The heart of this project is the regular expression (regex) pattern used to validate Gmail addresses. The pattern ensures the following:
^[a-zA-Z0-9._%+-]+@gmail\.com$
Contributions are welcome! Feel free to fork the repository and submit pull requests.
This project is licensed under the MIT License. See the LICENSE file for details.
Python documentation for the re module. StackOverflow for community-driven regex solutions.