Skip to content

Instantly share code, notes, and snippets.

View jitchie's full-sized avatar
🎯
Focusing

Jack Ritchie jitchie

🎯
Focusing
View GitHub Profile
@jitchie
jitchie / gist:d27f361da7d9919d57a31f0bae49e7e3
Last active June 29, 2021 12:01
URL matching regex - Gist
# URL Matching Regex
This GIST will endevour to explore the systematic exposition of the ideas and theorys surrounding regular expressions, using URL matching throughout this example.
## Summary
Regular expressions, or regex for short, are a series of literal characters, special characters and position fields that define a search pattern. These regular are not exclusivley tied to any programing laugage (JS,PYTHON,C++)
and are widley used throughout the coding community for validation (of input fields passwords and numerous other working examples).
Take the following example of a regular expression, which we’ll call “Matching a URL”: