Python Regex Demo: Zero-Setup SQLite with Email Pattern Matching

🔍 Python Regex in Action! Built a zero-setup SQLite demo that creates healthcare patient data and uses PURE Python regex (re.search) to find all @email.com patterns. No SQL LIKE - strictly Python re module! 👨💻 GITHUB LIVE: https://lnkd.in/gR8xTD98 OUTPUT: Table created with 5 patient records Sample data: ID:1 | John Doe | john.doe@email.com | 123-456-7890 [...] Email pattern test (regex '@.*email\.com$'): John Doe: john.doe@email.com Jane Smith: jane.smith@email.com Sarah Wilson: sarah.w@email.com Bob Lee: bob.lee@email.com 💡 Key learning: re.search(r'@.*email\.com$', email) = SQL LIKE '%@email.com' Run it yourself → python test_regex.py (no pip install needed!) #Python #Regex #SQL #DataEngineering #HealthcareData #Portfolio

To view or add a comment, sign in

Explore content categories