Skip to content

Instantly share code, notes, and snippets.

@NeelCheo
NeelCheo / Matching-URLs.md
Last active May 15, 2023 00:23
Gist for a tutorial about regex and matching URL's

URL-Matching with Regex

Regular expressions (regex) are a powerful way to manipulate text using set patterns. In this regex tutorial, we will be discussing how to match URLs with regex.

Summary

The regex we will be looking at for matching URLs is: (https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$

Table of Contents